17 lines
275 B
C++
17 lines
275 B
C++
#ifndef YYSTYPE
|
|
#define YYSTYPE int
|
|
#endif
|
|
#define OBRACE 257
|
|
#define EBRACE 258
|
|
#define SEMICOLON 259
|
|
#define DASH 260
|
|
#define NUMBER 261
|
|
#define QUOTES 262
|
|
#define WORD 263
|
|
#define BINDING 264
|
|
#define OPTIONS 265
|
|
#define TRUE 266
|
|
#define FALSE 267
|
|
|
|
|
|
extern YYSTYPE yylval;
|