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