site: end of line message, adesklets is not dead.
[adesklets.git] / src / cfg_parser.h
blob58a0b57ce3fbd1600914f77470e149df1fb9191a
1 /* A Bison parser, made by GNU Bison 1.875d. */
3 /* Skeleton parser for Yacc-like parsing with Bison,
4 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
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.
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.
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. */
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. */
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 APPLET = 259,
34 ID = 260,
35 SCREEN = 261,
36 X = 262,
37 Y = 263,
38 UNKNOWN = 264
40 #endif
41 #define INTEGER 258
42 #define APPLET 259
43 #define ID 260
44 #define SCREEN 261
45 #define X 262
46 #define Y 263
47 #define UNKNOWN 264
52 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
53 #line 57 "cfg_parser.y"
54 typedef union YYSTYPE {
55 int cfg_int;
56 char cfg_char[256];
57 } YYSTYPE;
58 /* Line 1285 of yacc.c. */
59 #line 60 "cfg_parser.h"
60 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
61 # define YYSTYPE_IS_DECLARED 1
62 # define YYSTYPE_IS_TRIVIAL 1
63 #endif
65 extern YYSTYPE cfglval;