Do not use macro for installation
[profile/ivi/flex.git] / parse.h
1 /* A Bison parser, made by GNU Bison 2.1.  */
2
3 /* Skeleton parser for Yacc-like parsing with Bison,
4    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor,
19    Boston, MA 02110-1301, USA.  */
20
21 /* As a special exception, when this file is copied by Bison into a
22    Bison output file, you may use that output file without restriction.
23    This special exception was added by the Free Software Foundation
24    in version 1.24 of Bison.  */
25
26 /* Tokens.  */
27 #ifndef YYTOKENTYPE
28 # define YYTOKENTYPE
29    /* Put the tokens into the symbol table, so that GDB and other debuggers
30       know about them.  */
31    enum yytokentype {
32      CHAR = 258,
33      NUMBER = 259,
34      SECTEND = 260,
35      SCDECL = 261,
36      XSCDECL = 262,
37      NAME = 263,
38      PREVCCL = 264,
39      EOF_OP = 265,
40      OPTION_OP = 266,
41      OPT_OUTFILE = 267,
42      OPT_PREFIX = 268,
43      OPT_YYCLASS = 269,
44      OPT_HEADER = 270,
45      OPT_EXTRA_TYPE = 271,
46      OPT_TABLES = 272,
47      CCE_ALNUM = 273,
48      CCE_ALPHA = 274,
49      CCE_BLANK = 275,
50      CCE_CNTRL = 276,
51      CCE_DIGIT = 277,
52      CCE_GRAPH = 278,
53      CCE_LOWER = 279,
54      CCE_PRINT = 280,
55      CCE_PUNCT = 281,
56      CCE_SPACE = 282,
57      CCE_UPPER = 283,
58      CCE_XDIGIT = 284,
59      CCE_NEG_ALNUM = 285,
60      CCE_NEG_ALPHA = 286,
61      CCE_NEG_BLANK = 287,
62      CCE_NEG_CNTRL = 288,
63      CCE_NEG_DIGIT = 289,
64      CCE_NEG_GRAPH = 290,
65      CCE_NEG_LOWER = 291,
66      CCE_NEG_PRINT = 292,
67      CCE_NEG_PUNCT = 293,
68      CCE_NEG_SPACE = 294,
69      CCE_NEG_UPPER = 295,
70      CCE_NEG_XDIGIT = 296,
71      CCL_OP_UNION = 297,
72      CCL_OP_DIFF = 298,
73      BEGIN_REPEAT_POSIX = 299,
74      END_REPEAT_POSIX = 300,
75      BEGIN_REPEAT_FLEX = 301,
76      END_REPEAT_FLEX = 302
77    };
78 #endif
79 /* Tokens.  */
80 #define CHAR 258
81 #define NUMBER 259
82 #define SECTEND 260
83 #define SCDECL 261
84 #define XSCDECL 262
85 #define NAME 263
86 #define PREVCCL 264
87 #define EOF_OP 265
88 #define OPTION_OP 266
89 #define OPT_OUTFILE 267
90 #define OPT_PREFIX 268
91 #define OPT_YYCLASS 269
92 #define OPT_HEADER 270
93 #define OPT_EXTRA_TYPE 271
94 #define OPT_TABLES 272
95 #define CCE_ALNUM 273
96 #define CCE_ALPHA 274
97 #define CCE_BLANK 275
98 #define CCE_CNTRL 276
99 #define CCE_DIGIT 277
100 #define CCE_GRAPH 278
101 #define CCE_LOWER 279
102 #define CCE_PRINT 280
103 #define CCE_PUNCT 281
104 #define CCE_SPACE 282
105 #define CCE_UPPER 283
106 #define CCE_XDIGIT 284
107 #define CCE_NEG_ALNUM 285
108 #define CCE_NEG_ALPHA 286
109 #define CCE_NEG_BLANK 287
110 #define CCE_NEG_CNTRL 288
111 #define CCE_NEG_DIGIT 289
112 #define CCE_NEG_GRAPH 290
113 #define CCE_NEG_LOWER 291
114 #define CCE_NEG_PRINT 292
115 #define CCE_NEG_PUNCT 293
116 #define CCE_NEG_SPACE 294
117 #define CCE_NEG_UPPER 295
118 #define CCE_NEG_XDIGIT 296
119 #define CCL_OP_UNION 297
120 #define CCL_OP_DIFF 298
121 #define BEGIN_REPEAT_POSIX 299
122 #define END_REPEAT_POSIX 300
123 #define BEGIN_REPEAT_FLEX 301
124 #define END_REPEAT_FLEX 302
125
126
127
128
129 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
130 typedef int YYSTYPE;
131 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
132 # define YYSTYPE_IS_DECLARED 1
133 # define YYSTYPE_IS_TRIVIAL 1
134 #endif
135
136 extern YYSTYPE yylval;
137
138
139