/********************************************** CS515 Compiler Project **********************************************/ #ifndef ATTR_H #define ATTR_H typedef union {int num; char *str;} tokentype; #endif