yacc.h
00001
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
#ifndef BISON_YACC_TAB_H
00027
# define BISON_YACC_TAB_H
00028
00029
00030
#ifndef YYTOKENTYPE
00031
# define YYTOKENTYPE
00032
00033
00034
enum yytokentype {
00035 NOT = 258,
00036 EQ = 259,
00037 NEQ = 260,
00038 LEQ = 261,
00039 GEQ = 262,
00040 LE = 263,
00041 GR = 264,
00042 OR = 265,
00043 AND = 266,
00044 IN = 267,
00045 EXIST = 268,
00046 MAX = 269,
00047 MIN = 270,
00048 BOOL = 271,
00049 STRING = 272,
00050 ID = 273,
00051 NUM = 274,
00052 FLOAT = 275
00053 };
00054
#endif
00055
#define NOT 258
00056
#define EQ 259
00057
#define NEQ 260
00058
#define LEQ 261
00059
#define GEQ 262
00060
#define LE 263
00061
#define GR 264
00062
#define OR 265
00063
#define AND 266
00064
#define IN 267
00065
#define EXIST 268
00066
#define MAX 269
00067
#define MIN 270
00068
#define BOOL 271
00069
#define STRING 272
00070
#define ID 273
00071
#define NUM 274
00072
#define FLOAT 275
00073
00074
00075
00076
00077
#ifndef YYSTYPE
00078
#line 13 "yacc.y"
00079
typedef union {
00080
char valb;
00081
int vali;
00082
double vald;
00083
char *
name;
00084
void *ptr;
00085 } yystype;
00086
00087
#line 88 "yacc.tab.h"
00088
# define YYSTYPE yystype
00089
#endif
00090
00091
extern YYSTYPE kiotraderlval;
00092
00093
00094
#endif
00095
This file is part of the documentation for kio Library Version 3.3.1.