r8307: try to cope with flex and bison not being installed, in a similar fashion...
[kai/samba.git] / source4 / heimdal / lib / asn1 / parse.h
1 /* A Bison parser, made by GNU Bison 1.875d.  */
2
3 /* Skeleton parser for Yacc-like parsing with Bison,
4    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 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., 59 Temple Place - Suite 330,
19    Boston, MA 02111-1307, 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      INTEGER = 258,
33      SEQUENCE = 259,
34      CHOICE = 260,
35      OF = 261,
36      OCTET = 262,
37      STRING = 263,
38      GeneralizedTime = 264,
39      GeneralString = 265,
40      BIT = 266,
41      APPLICATION = 267,
42      OPTIONAL = 268,
43      EEQUAL = 269,
44      TBEGIN = 270,
45      END = 271,
46      DEFINITIONS = 272,
47      ENUMERATED = 273,
48      UTF8String = 274,
49      NULLTYPE = 275,
50      EXTERNAL = 276,
51      DEFAULT = 277,
52      DOTDOT = 278,
53      DOTDOTDOT = 279,
54      BOOLEAN = 280,
55      IMPORTS = 281,
56      FROM = 282,
57      OBJECT = 283,
58      IDENTIFIER = 284,
59      IDENT = 285,
60      CONSTANT = 286
61    };
62 #endif
63 #define INTEGER 258
64 #define SEQUENCE 259
65 #define CHOICE 260
66 #define OF 261
67 #define OCTET 262
68 #define STRING 263
69 #define GeneralizedTime 264
70 #define GeneralString 265
71 #define BIT 266
72 #define APPLICATION 267
73 #define OPTIONAL 268
74 #define EEQUAL 269
75 #define TBEGIN 270
76 #define END 271
77 #define DEFINITIONS 272
78 #define ENUMERATED 273
79 #define UTF8String 274
80 #define NULLTYPE 275
81 #define EXTERNAL 276
82 #define DEFAULT 277
83 #define DOTDOT 278
84 #define DOTDOTDOT 279
85 #define BOOLEAN 280
86 #define IMPORTS 281
87 #define FROM 282
88 #define OBJECT 283
89 #define IDENTIFIER 284
90 #define IDENT 285
91 #define CONSTANT 286
92
93
94
95
96 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
97 #line 56 "parse.y"
98 typedef union YYSTYPE {
99   int constant;
100   char *name;
101   Type *type;
102   Member *member;
103   char *defval;
104 } YYSTYPE;
105 /* Line 1285 of yacc.c.  */
106 #line 107 "parse.h"
107 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
108 # define YYSTYPE_IS_DECLARED 1
109 # define YYSTYPE_IS_TRIVIAL 1
110 #endif
111
112 extern YYSTYPE yylval;
113
114
115