1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef _EXPRESSION_H_ #define _EXPRESSION_H_ typedef enum { EX_UNINIT, EX_INTLIT, EX_STRLIT, EX_ARGNUM, EX_FNNAME, EX_FNCALL, } ExpressionType; #endif