/* sparse.h - parse defines for stats.exe */ #define numcom 7 struct { char c[8]; } comtext [0] = { "fnull " ,"BAUD " ,"END " ,"HELP " ,"PORT " ,"QUIT " ,"TIMESTAM" ,"BASE " ,"\0" }; enum com_type { c_fnull, /* must be first */ c_baud, c_end, c_help, c_port, c_quit, c_time, c_base, c_lnull, }; /* must be in the same order as comtext above */