yacc.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef YYTOKENTYPE
00028 # define YYTOKENTYPE
00029
00030
00031 enum yytokentype {
00032 NOT = 258,
00033 EQ = 259,
00034 NEQ = 260,
00035 LEQ = 261,
00036 GEQ = 262,
00037 LE = 263,
00038 GR = 264,
00039 OR = 265,
00040 AND = 266,
00041 TOKEN_IN = 267,
00042 EXIST = 268,
00043 MAX = 269,
00044 MIN = 270,
00045 VAL_BOOL = 271,
00046 VAL_STRING = 272,
00047 VAL_ID = 273,
00048 VAL_NUM = 274,
00049 VAL_FLOAT = 275
00050 };
00051 #endif
00052 #define NOT 258
00053 #define EQ 259
00054 #define NEQ 260
00055 #define LEQ 261
00056 #define GEQ 262
00057 #define LE 263
00058 #define GR 264
00059 #define OR 265
00060 #define AND 266
00061 #define TOKEN_IN 267
00062 #define EXIST 268
00063 #define MAX 269
00064 #define MIN 270
00065 #define VAL_BOOL 271
00066 #define VAL_STRING 272
00067 #define VAL_ID 273
00068 #define VAL_NUM 274
00069 #define VAL_FLOAT 275
00070
00071
00072
00073
00074 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
00075 #line 13 "yacc.y"
00076 typedef union YYSTYPE {
00077 char valb;
00078 int vali;
00079 double vald;
00080 char *name;
00081 void *ptr;
00082 } YYSTYPE;
00083
00084 #line 84 "yacc.tab.h"
00085 # define yystype YYSTYPE
00086 # define YYSTYPE_IS_DECLARED 1
00087 # define YYSTYPE_IS_TRIVIAL 1
00088 #endif
00089
00090 extern YYSTYPE kiotraderlval;
00091
00092
00093
|