ref: 94443daf8e248e65afc8d3f17f26efea22748b51
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 "???";
}