#ifndef _Y_TAB_H #define _Y_TAB_H #define IF 300 #define ELSE 301 #define WHILE 302 #define FOR 303 #define INT 304 #define ID 306 #define NUM 307 #define STRNG 308 #define BIN_OP 310 #define LEQ 312 int yylex(void); typedef union { char *string; int integer; } yylType; #endif