forked from rakitzis/rc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse.h
More file actions
51 lines (49 loc) · 954 Bytes
/
parse.h
File metadata and controls
51 lines (49 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef _yy_defines_h_
#define _yy_defines_h_
#ifndef YYTOKEN_IS_DECLARED
#define YYTOKEN_IS_DECLARED 1
typedef enum yytoken {
ANDAND = 257,
BACKBACK = 258,
BANG = 259,
CASE = 260,
COUNT = 261,
DUP = 262,
ELSE = 263,
END = 264,
FLAT = 265,
FN = 266,
FOR = 267,
IF = 268,
IN = 269,
OROR = 270,
PIPE = 271,
REDIR = 272,
SREDIR = 273,
SUB = 274,
SUBSHELL = 275,
SWITCH = 276,
TWIDDLE = 277,
WHILE = 278,
WORD = 279,
HUH = 280,
PREDIR = 281
} yytoken;
#endif /* !YYTOKEN_IS_DECLARED */
#ifdef YYSTYPE
#undef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
#endif
#ifndef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
typedef union YYSTYPE {
struct Node *node;
struct Redir redir;
struct Pipe pipe;
struct Dup dup;
struct Word word;
char *keyword;
} YYSTYPE;
#endif /* !YYSTYPE_IS_DECLARED */
extern YYSTYPE yylval;
#endif /* _yy_defines_h_ */