Blame src/parse.h

Packit f00812
/* A Bison parser, made by GNU Bison 3.0.4.  */
Packit f00812
Packit f00812
/* Bison interface for Yacc-like parsers in C
Packit f00812
Packit f00812
   Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
Packit f00812
Packit f00812
   This program is free software: you can redistribute it and/or modify
Packit f00812
   it under the terms of the GNU General Public License as published by
Packit f00812
   the Free Software Foundation, either version 3 of the License, or
Packit f00812
   (at your option) any later version.
Packit f00812
Packit f00812
   This program is distributed in the hope that it will be useful,
Packit f00812
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit f00812
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit f00812
   GNU General Public License for more details.
Packit f00812
Packit f00812
   You should have received a copy of the GNU General Public License
Packit f00812
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit f00812
Packit f00812
/* As a special exception, you may create a larger work that contains
Packit f00812
   part or all of the Bison parser skeleton and distribute that work
Packit f00812
   under terms of your choice, so long as that work isn't itself a
Packit f00812
   parser generator using the skeleton or a modified version thereof
Packit f00812
   as a parser skeleton.  Alternatively, if you modify or redistribute
Packit f00812
   the parser skeleton itself, you may (at your option) remove this
Packit f00812
   special exception, which will cause the skeleton and the resulting
Packit f00812
   Bison output files to be licensed under the GNU General Public
Packit f00812
   License without this special exception.
Packit f00812
Packit f00812
   This special exception was added by the Free Software Foundation in
Packit f00812
   version 2.2 of Bison.  */
Packit f00812
Packit f00812
#ifndef YY_YY_PARSE_H_INCLUDED
Packit f00812
# define YY_YY_PARSE_H_INCLUDED
Packit f00812
/* Debug traces.  */
Packit f00812
#ifndef YYDEBUG
Packit f00812
# define YYDEBUG 0
Packit f00812
#endif
Packit f00812
#if YYDEBUG
Packit f00812
extern int yydebug;
Packit f00812
#endif
Packit f00812
Packit f00812
/* Token type.  */
Packit f00812
#ifndef YYTOKENTYPE
Packit f00812
# define YYTOKENTYPE
Packit f00812
  enum yytokentype
Packit f00812
  {
Packit f00812
    CHAR = 258,
Packit f00812
    NUMBER = 259,
Packit f00812
    SECTEND = 260,
Packit f00812
    SCDECL = 261,
Packit f00812
    XSCDECL = 262,
Packit f00812
    NAME = 263,
Packit f00812
    PREVCCL = 264,
Packit f00812
    EOF_OP = 265,
Packit f00812
    TOK_OPTION = 266,
Packit f00812
    TOK_OUTFILE = 267,
Packit f00812
    TOK_PREFIX = 268,
Packit f00812
    TOK_YYCLASS = 269,
Packit f00812
    TOK_HEADER_FILE = 270,
Packit f00812
    TOK_EXTRA_TYPE = 271,
Packit f00812
    TOK_TABLES_FILE = 272,
Packit f00812
    CCE_ALNUM = 273,
Packit f00812
    CCE_ALPHA = 274,
Packit f00812
    CCE_BLANK = 275,
Packit f00812
    CCE_CNTRL = 276,
Packit f00812
    CCE_DIGIT = 277,
Packit f00812
    CCE_GRAPH = 278,
Packit f00812
    CCE_LOWER = 279,
Packit f00812
    CCE_PRINT = 280,
Packit f00812
    CCE_PUNCT = 281,
Packit f00812
    CCE_SPACE = 282,
Packit f00812
    CCE_UPPER = 283,
Packit f00812
    CCE_XDIGIT = 284,
Packit f00812
    CCE_NEG_ALNUM = 285,
Packit f00812
    CCE_NEG_ALPHA = 286,
Packit f00812
    CCE_NEG_BLANK = 287,
Packit f00812
    CCE_NEG_CNTRL = 288,
Packit f00812
    CCE_NEG_DIGIT = 289,
Packit f00812
    CCE_NEG_GRAPH = 290,
Packit f00812
    CCE_NEG_LOWER = 291,
Packit f00812
    CCE_NEG_PRINT = 292,
Packit f00812
    CCE_NEG_PUNCT = 293,
Packit f00812
    CCE_NEG_SPACE = 294,
Packit f00812
    CCE_NEG_UPPER = 295,
Packit f00812
    CCE_NEG_XDIGIT = 296,
Packit f00812
    CCL_OP_DIFF = 297,
Packit f00812
    CCL_OP_UNION = 298,
Packit f00812
    BEGIN_REPEAT_POSIX = 299,
Packit f00812
    END_REPEAT_POSIX = 300,
Packit f00812
    BEGIN_REPEAT_FLEX = 301,
Packit f00812
    END_REPEAT_FLEX = 302
Packit f00812
  };
Packit f00812
#endif
Packit f00812
/* Tokens.  */
Packit f00812
#define CHAR 258
Packit f00812
#define NUMBER 259
Packit f00812
#define SECTEND 260
Packit f00812
#define SCDECL 261
Packit f00812
#define XSCDECL 262
Packit f00812
#define NAME 263
Packit f00812
#define PREVCCL 264
Packit f00812
#define EOF_OP 265
Packit f00812
#define TOK_OPTION 266
Packit f00812
#define TOK_OUTFILE 267
Packit f00812
#define TOK_PREFIX 268
Packit f00812
#define TOK_YYCLASS 269
Packit f00812
#define TOK_HEADER_FILE 270
Packit f00812
#define TOK_EXTRA_TYPE 271
Packit f00812
#define TOK_TABLES_FILE 272
Packit f00812
#define CCE_ALNUM 273
Packit f00812
#define CCE_ALPHA 274
Packit f00812
#define CCE_BLANK 275
Packit f00812
#define CCE_CNTRL 276
Packit f00812
#define CCE_DIGIT 277
Packit f00812
#define CCE_GRAPH 278
Packit f00812
#define CCE_LOWER 279
Packit f00812
#define CCE_PRINT 280
Packit f00812
#define CCE_PUNCT 281
Packit f00812
#define CCE_SPACE 282
Packit f00812
#define CCE_UPPER 283
Packit f00812
#define CCE_XDIGIT 284
Packit f00812
#define CCE_NEG_ALNUM 285
Packit f00812
#define CCE_NEG_ALPHA 286
Packit f00812
#define CCE_NEG_BLANK 287
Packit f00812
#define CCE_NEG_CNTRL 288
Packit f00812
#define CCE_NEG_DIGIT 289
Packit f00812
#define CCE_NEG_GRAPH 290
Packit f00812
#define CCE_NEG_LOWER 291
Packit f00812
#define CCE_NEG_PRINT 292
Packit f00812
#define CCE_NEG_PUNCT 293
Packit f00812
#define CCE_NEG_SPACE 294
Packit f00812
#define CCE_NEG_UPPER 295
Packit f00812
#define CCE_NEG_XDIGIT 296
Packit f00812
#define CCL_OP_DIFF 297
Packit f00812
#define CCL_OP_UNION 298
Packit f00812
#define BEGIN_REPEAT_POSIX 299
Packit f00812
#define END_REPEAT_POSIX 300
Packit f00812
#define BEGIN_REPEAT_FLEX 301
Packit f00812
#define END_REPEAT_FLEX 302
Packit f00812
Packit f00812
/* Value type.  */
Packit f00812
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
Packit f00812
typedef int YYSTYPE;
Packit f00812
# define YYSTYPE_IS_TRIVIAL 1
Packit f00812
# define YYSTYPE_IS_DECLARED 1
Packit f00812
#endif
Packit f00812
Packit f00812
Packit f00812
extern YYSTYPE yylval;
Packit f00812
Packit f00812
int yyparse (void);
Packit f00812
Packit f00812
#endif /* !YY_YY_PARSE_H_INCLUDED  */