zconf.tab.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #ifndef BISON_ZCONF_TAB_H
  2. # define BISON_ZCONF_TAB_H
  3. #ifndef YYSTYPE
  4. typedef union
  5. {
  6. int token;
  7. char *string;
  8. struct symbol *symbol;
  9. struct expr *expr;
  10. struct menu *menu;
  11. } yystype;
  12. # define YYSTYPE yystype
  13. # define YYSTYPE_IS_TRIVIAL 1
  14. #endif
  15. # define T_MAINMENU 257
  16. # define T_MENU 258
  17. # define T_ENDMENU 259
  18. # define T_SOURCE 260
  19. # define T_CHOICE 261
  20. # define T_ENDCHOICE 262
  21. # define T_COMMENT 263
  22. # define T_CONFIG 264
  23. # define T_HELP 265
  24. # define T_HELPTEXT 266
  25. # define T_IF 267
  26. # define T_ENDIF 268
  27. # define T_DEPENDS 269
  28. # define T_REQUIRES 270
  29. # define T_OPTIONAL 271
  30. # define T_PROMPT 272
  31. # define T_DEFAULT 273
  32. # define T_TRISTATE 274
  33. # define T_BOOLEAN 275
  34. # define T_INT 276
  35. # define T_HEX 277
  36. # define T_WORD 278
  37. # define T_STRING 279
  38. # define T_UNEQUAL 280
  39. # define T_EOF 281
  40. # define T_EOL 282
  41. # define T_CLOSE_PAREN 283
  42. # define T_OPEN_PAREN 284
  43. # define T_ON 285
  44. # define T_OR 286
  45. # define T_AND 287
  46. # define T_EQUAL 288
  47. # define T_NOT 289
  48. extern YYSTYPE zconflval;
  49. #endif /* not BISON_ZCONF_TAB_H */