#ifndef BISON_CONFIG_PARSER_H # define BISON_CONFIG_PARSER_H #ifndef YYSTYPE typedef union { char *str; int i; double f; } yystype; # define YYSTYPE yystype # define YYSTYPE_IS_TRIVIAL 1 #endif # define TOK_IDENTIFIER 257 # define TOK_STRING 258 # define TOK_FALSE 259 # define TOK_TRUE 260 # define TOK_WHITE 261 # define TOK_EOL 262 # define TOK_UNKNOWN 263 # define TOK_FLOAT 264 # define TOK_INTEGER 265 extern YYSTYPE yylval; #endif /* not BISON_CONFIG_PARSER_H */