diff options
Diffstat (limited to 'filter/idx.tab.h')
-rw-r--r-- | filter/idx.tab.h | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/filter/idx.tab.h b/filter/idx.tab.h new file mode 100644 index 0000000..00ac7cd --- /dev/null +++ b/filter/idx.tab.h @@ -0,0 +1,83 @@ +/* A Bison parser, made by GNU Bison 2.0. */ + +/* Skeleton parser for GLR parsing with Bison, + Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + NUM = 258, + COL = 259, + FUNC = 260, + REG = 261, + INDEF = 262, + OR = 263, + AND = 264, + NE = 265, + EQ = 266, + GE = 267, + LE = 268, + UMINUS = 269 + }; +#endif +#define NUM 258 +#define COL 259 +#define FUNC 260 +#define REG 261 +#define INDEF 262 +#define OR 263 +#define AND 264 +#define NE 265 +#define EQ 266 +#define GE 267 +#define LE 268 +#define UMINUS 269 + + + + +#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) +#line 6 "idx.y" +typedef union YYSTYPE { + idxrowrec *row; + idxvalrec *val; +} YYSTYPE; +/* Line 2089 of glr.c. */ +#line 65 "idx.tab.h" +# define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 +#endif + +extern YYSTYPE idxlval; + +#if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED) +typedef struct YYLTYPE +{ + + char yydummy; + +} YYLTYPE; +# define YYLTYPE_IS_DECLARED 1 +# define YYLTYPE_IS_TRIVIAL 1 +#endif + + + |