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