summaryrefslogtreecommitdiffstats
path: root/src/ce_parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ce_parse.h')
-rw-r--r--src/ce_parse.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/ce_parse.h b/src/ce_parse.h
new file mode 100644
index 0000000..913f9ce
--- /dev/null
+++ b/src/ce_parse.h
@@ -0,0 +1,35 @@
+#ifndef YYSTYPE
+#define YYSTYPE int
+#endif
+#define TOK_QUESTIONMARK 258
+#define TOK_COLON 259
+#define TOK_OR 260
+#define TOK_AND 261
+#define TOK_BITWISEOR 262
+#define TOK_BITWISEXOR 263
+#define TOK_AMPERSAND 264
+#define TOK_NOTEQUAL 265
+#define TOK_EQUAL 266
+#define TOK_LESSTHAN 267
+#define TOK_GREATERTHAN 268
+#define TOK_LESSTHANOREQUALTO 269
+#define TOK_GREATERTHANOREQUALTO 270
+#define TOK_SHIFTLEFT 271
+#define TOK_SHIFTRIGHT 272
+#define TOK_PLUS 273
+#define TOK_MINUS 274
+#define TOK_STAR 275
+#define TOK_DIVIDE 276
+#define TOK_MOD 277
+#define TOK_TILDE 278
+#define TOK_NOT 279
+#define TOK_LPAREN 280
+#define TOK_RPAREN 281
+#define TOK_OCTALINT 282
+#define TOK_DECIMALINT 283
+#define TOK_HEXADECIMALINT 284
+#define TOK_CHARACTER 285
+#define TOK_FLOAT 286
+
+
+extern YYSTYPE cppExpYYlval;