mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-12-15 14:08:42 +00:00
24 lines
421 B
C
24 lines
421 B
C
|
typedef union {
|
||
|
cf_value Val;
|
||
|
} YYSTYPE;
|
||
|
#define ADD_ASSIGN 257
|
||
|
#define ASSIGN 258
|
||
|
#define VARIABLE 259
|
||
|
#define STRING 260
|
||
|
#define SEMICOLON 261
|
||
|
#define PLUS 262
|
||
|
#define MINUS 263
|
||
|
#define MULT 264
|
||
|
#define DIVIDE 265
|
||
|
#define RPAREN 266
|
||
|
#define LPAREN 267
|
||
|
#define RBRACE 268
|
||
|
#define LBRACE 269
|
||
|
#define COMMA 270
|
||
|
#define INTEGER 271
|
||
|
#define REAL 272
|
||
|
#define FILELINE 273
|
||
|
|
||
|
|
||
|
extern YYSTYPE cflval;
|