/* character codes returned by cif lexical analyzer to indicate: * EO_FILE => end-of-file * NUMBER => number found, its value is in currNum. */ #define EO_FILE '\0' #define NUMBER '\001' typedef enum { RECOVER, FATAL } LexErrorType;