#ifndef config_lex_h #define config_lex_h // config_lex.h // buzz - Programme du robot Efrei Robotique I1-I2 2003 // Copyright (C) 2003 Nicolas Schodet #define NUM 0x100 #define FLOAT 0x101 #define ID 0x102 #define BOOL 0x103 #define ERR 0x104 union config_yytype { double fl; int num; const char *id; bool boolean; }; extern config_yytype config_yylval; int config_yylex (void); int config_yyopen (const char *filename); void config_yyclose (void); #endif // config_lex_h