2013-04-11 20:55:22 +05:30
|
|
|
/* A Bison parser, made by GNU Bison 2.6.1. */
|
2003-12-26 02:27:13 +00:00
|
|
|
|
2013-04-11 20:55:22 +05:30
|
|
|
/* Bison interface for Yacc-like parsers in C
|
2016-06-02 01:50:16 +02:00
|
|
|
|
2013-04-11 20:55:22 +05:30
|
|
|
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
|
2016-06-02 01:50:16 +02:00
|
|
|
|
2009-01-17 22:28:01 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
2003-12-26 02:27:13 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2011-04-25 14:30:58 +05:30
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2016-06-02 01:50:16 +02:00
|
|
|
|
2003-12-26 02:27:13 +00:00
|
|
|
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.
|
2016-06-02 01:50:16 +02:00
|
|
|
|
2003-12-26 02:27:13 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
2018-07-11 23:27:07 +02:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2007-01-15 10:09:42 +00:00
|
|
|
|
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
|
|
under terms of your choice, so long as that work isn't itself a
|
|
|
|
parser generator using the skeleton or a modified version thereof
|
|
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
|
|
special exception, which will cause the skeleton and the resulting
|
|
|
|
Bison output files to be licensed under the GNU General Public
|
|
|
|
License without this special exception.
|
2016-06-02 01:50:16 +02:00
|
|
|
|
2007-01-15 10:09:42 +00:00
|
|
|
This special exception was added by the Free Software Foundation in
|
|
|
|
version 2.2 of Bison. */
|
2003-12-26 02:27:13 +00:00
|
|
|
|
2013-04-11 20:55:22 +05:30
|
|
|
#ifndef CERN_Y_TAB_H
|
|
|
|
# define CERN_Y_TAB_H
|
|
|
|
/* Enabling traces. */
|
|
|
|
#ifndef YYDEBUG
|
|
|
|
# define YYDEBUG 0
|
|
|
|
#endif
|
|
|
|
#if YYDEBUG
|
|
|
|
extern int cern_debug;
|
|
|
|
#endif
|
2011-04-25 14:30:58 +05:30
|
|
|
|
2003-12-26 02:27:13 +00:00
|
|
|
/* Tokens. */
|
|
|
|
#ifndef YYTOKENTYPE
|
|
|
|
# define YYTOKENTYPE
|
|
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
|
|
know about them. */
|
|
|
|
enum yytokentype {
|
|
|
|
RECTANGLE = 258,
|
|
|
|
POLYGON = 259,
|
|
|
|
CIRCLE = 260,
|
|
|
|
DEFAULT = 261,
|
|
|
|
AUTHOR = 262,
|
|
|
|
DESCRIPTION = 263,
|
|
|
|
BEGIN_COMMENT = 264,
|
|
|
|
FLOAT = 265,
|
|
|
|
COMMENT = 266,
|
|
|
|
LINK = 267
|
|
|
|
};
|
|
|
|
#endif
|
2007-01-15 10:09:42 +00:00
|
|
|
/* Tokens. */
|
2003-12-26 02:27:13 +00:00
|
|
|
#define RECTANGLE 258
|
|
|
|
#define POLYGON 259
|
|
|
|
#define CIRCLE 260
|
|
|
|
#define DEFAULT 261
|
|
|
|
#define AUTHOR 262
|
|
|
|
#define DESCRIPTION 263
|
|
|
|
#define BEGIN_COMMENT 264
|
|
|
|
#define FLOAT 265
|
|
|
|
#define COMMENT 266
|
|
|
|
#define LINK 267
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-01-15 10:09:42 +00:00
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
|
|
typedef union YYSTYPE
|
|
|
|
{
|
2013-04-11 20:55:22 +05:30
|
|
|
/* Line 2049 of yacc.c */
|
2011-04-25 14:30:58 +05:30
|
|
|
#line 46 "imap_cern.y"
|
|
|
|
|
1999-09-07 00:03:20 +00:00
|
|
|
int val;
|
|
|
|
double value;
|
2008-01-27 16:13:51 +00:00
|
|
|
char *id;
|
2011-04-25 14:30:58 +05:30
|
|
|
|
|
|
|
|
2013-04-11 20:55:22 +05:30
|
|
|
/* Line 2049 of yacc.c */
|
|
|
|
#line 88 "y.tab.h"
|
2011-04-25 14:30:58 +05:30
|
|
|
} YYSTYPE;
|
|
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
2003-12-26 02:27:13 +00:00
|
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
|
|
#endif
|
1999-09-07 00:03:20 +00:00
|
|
|
|
|
|
|
extern YYSTYPE cern_lval;
|
2003-12-26 02:27:13 +00:00
|
|
|
|
2013-04-11 20:55:22 +05:30
|
|
|
#ifdef YYPARSE_PARAM
|
|
|
|
#if defined __STDC__ || defined __cplusplus
|
|
|
|
int cern_parse (void *YYPARSE_PARAM);
|
|
|
|
#else
|
|
|
|
int cern_parse ();
|
|
|
|
#endif
|
|
|
|
#else /* ! YYPARSE_PARAM */
|
|
|
|
#if defined __STDC__ || defined __cplusplus
|
|
|
|
int cern_parse (void);
|
|
|
|
#else
|
|
|
|
int cern_parse ();
|
|
|
|
#endif
|
|
|
|
#endif /* ! YYPARSE_PARAM */
|
2011-04-25 14:30:58 +05:30
|
|
|
|
2013-04-11 20:55:22 +05:30
|
|
|
#endif /* !CERN_Y_TAB_H */
|