ref: 249dc0489c7b24371e1f829e9c849fa7464f6c0c
dir: /liblogfs/tagname.c/
#include "logfsos.h"
#include "logfs.h"
#include "local.h"
char *
logfstagname(uchar tag)
{
switch(tag) {
case LogfsTboot:
return "boot";
case LogfsTnone:
return "free";
case LogfsTlog:
return "log";
case LogfsTdata:
return "data";
}
return "???";
}