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