blob: 7d42f3c053639bab0d0be3ebb605fa1c21490910 (
plain)
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
|
#ifndef BISON_ICALSSYACC_H
# define BISON_ICALSSYACC_H
#ifndef YYSTYPE
typedef union {
char* v_string;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define STRING 257
# define SELECT 258
# define FROM 259
# define WHERE 260
# define COMMA 261
# define QUOTE 262
# define EQUALS 263
# define NOTEQUALS 264
# define LESS 265
# define GREATER 266
# define LESSEQUALS 267
# define GREATEREQUALS 268
# define AND 269
# define OR 270
# define EOL 271
# define END 272
extern YYSTYPE sslval;
#endif /* not BISON_ICALSSYACC_H */
|