home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / BASH_112.ZIP / BASH-112.TAR / bash-1.12 / y.tab.h < prev   
C/C++ Source or Header  |  1993-10-11  |  864b  |  42 lines

  1. typedef union {
  2.   WORD_DESC *word;        /* the word that we read. */
  3.   int number;            /* the number that we read. */
  4.   WORD_LIST *word_list;
  5.   COMMAND *command;
  6.   REDIRECT *redirect;
  7.   ELEMENT element;
  8.   PATTERN_LIST *pattern;
  9. } YYSTYPE;
  10. #define    IF    258
  11. #define    THEN    259
  12. #define    ELSE    260
  13. #define    ELIF    261
  14. #define    FI    262
  15. #define    CASE    263
  16. #define    ESAC    264
  17. #define    FOR    265
  18. #define    WHILE    266
  19. #define    UNTIL    267
  20. #define    DO    268
  21. #define    DONE    269
  22. #define    FUNCTION    270
  23. #define    IN    271
  24. #define    BANG    272
  25. #define    WORD    273
  26. #define    NUMBER    274
  27. #define    AND_AND    275
  28. #define    OR_OR    276
  29. #define    GREATER_GREATER    277
  30. #define    LESS_LESS    278
  31. #define    LESS_AND    279
  32. #define    GREATER_AND    280
  33. #define    SEMI_SEMI    281
  34. #define    LESS_LESS_MINUS    282
  35. #define    AND_GREATER    283
  36. #define    LESS_GREATER    284
  37. #define    GREATER_BAR    285
  38. #define    yacc_EOF    286
  39.  
  40.  
  41. extern YYSTYPE yylval;
  42.