]> git.ipfire.org Git - thirdparty/bash.git/blob - parser-built
Imported from ../bash-2.01.tar.gz.
[thirdparty/bash.git] / parser-built
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 SELECT 266
19 #define WHILE 267
20 #define UNTIL 268
21 #define DO 269
22 #define DONE 270
23 #define FUNCTION 271
24 #define IN 272
25 #define BANG 273
26 #define TIME 274
27 #define TIMEOPT 275
28 #define WORD 276
29 #define ASSIGNMENT_WORD 277
30 #define NUMBER 278
31 #define AND_AND 279
32 #define OR_OR 280
33 #define GREATER_GREATER 281
34 #define LESS_LESS 282
35 #define LESS_AND 283
36 #define GREATER_AND 284
37 #define SEMI_SEMI 285
38 #define LESS_LESS_MINUS 286
39 #define AND_GREATER 287
40 #define LESS_GREATER 288
41 #define GREATER_BAR 289
42 #define yacc_EOF 290
43
44
45 extern YYSTYPE yylval;