1#ifndef YYERRCODE
2#define YYERRCODE 256
3#endif
4
5#define T_TRUE 257
6#define T_FALSE 258
7#define T_DIGIT 259
8#define T_ID 260
9#define T_STRING 261
10#define T_REGEX 262
11#define T_REGEX_I 263
12#define T_FUNC_FILE 264
13#define T_OP_EQ 265
14#define T_OP_NE 266
15#define T_OP_LT 267
16#define T_OP_LE 268
17#define T_OP_GT 269
18#define T_OP_GE 270
19#define T_OP_REG 271
20#define T_OP_NRE 272
21#define T_OP_IN 273
22#define T_OP_OID 274
23#define T_OP_OR 275
24#define T_OP_AND 276
25#define T_OP_NOT 277
26typedef union {
27    char     *cpVal;
28    ssl_expr *exVal;
29} YYSTYPE;
30extern YYSTYPE ssl_expr_yylval;
31