]> git.ipfire.org Git - thirdparty/strongswan.git/blob - programs/starter/parser.tab.h
- import of strongswan-2.7.0
[thirdparty/strongswan.git] / programs / starter / parser.tab.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 EQUAL = 258,
33 FIRST_SPACES = 259,
34 EOL = 260,
35 CONFIG = 261,
36 SETUP = 262,
37 CONN = 263,
38 CA = 264,
39 INCLUDE = 265,
40 VERSION = 266,
41 STRING = 267
42 };
43 #endif
44 /* Tokens. */
45 #define EQUAL 258
46 #define FIRST_SPACES 259
47 #define EOL 260
48 #define CONFIG 261
49 #define SETUP 262
50 #define CONN 263
51 #define CA 264
52 #define INCLUDE 265
53 #define VERSION 266
54 #define STRING 267
55
56
57
58
59 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
60 #line 56 "parser.y"
61 typedef union YYSTYPE { char *s; } YYSTYPE;
62 /* Line 1447 of yacc.c. */
63 #line 64 "parser.tab.h"
64 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
65 # define YYSTYPE_IS_DECLARED 1
66 # define YYSTYPE_IS_TRIVIAL 1
67 #endif
68
69 extern YYSTYPE yylval;
70
71
72