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