ref: 606901dc5da9cb09acb5593c5cf74ce1b52ca6e2
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 "???";
}