home *** CD-ROM | disk | FTP | other *** search
- /* parse.h Parse defines for report.exe */
- #define numcom 10
- struct {
- char c[8];
- } comtext [0]
- = {
- "fnull "
- ,"CIRCUIT "
- ,"END "
- ,"HELP "
- ,"INPUT "
- ,"OUTPUT "
- ,"QUIT "
- ,"RAW "
- ,"RECORD "
- ,"RR "
- ,"SELECT "
- ,"\0"
-
- };
-
- enum com_type {
- c_fnull, /* must be first */
- c_circuit,
- c_end,
- c_help,
- c_input,
- c_output,
- c_quit,
- c_raw,
- c_record,
- c_rr,
- c_select,
- c_lnull,
- };
- /* must be in the same order as comtext above */
-
-