libkholidays

parseholiday.h
1 /* A Bison parser, made by GNU Bison 2.3. */
2 
3 /* Skeleton interface for Bison's Yacc-like parsers in C
4 
5  Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6  Free Software Foundation, Inc.
7 
8  This program is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2, or (at your option)
11  any later version.
12 
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  Boston, MA 02110-1301, USA. */
22 
23 /* As a special exception, you may create a larger work that contains
24  part or all of the Bison parser skeleton and distribute that work
25  under terms of your choice, so long as that work isn't itself a
26  parser generator using the skeleton or a modified version thereof
27  as a parser skeleton. Alternatively, if you modify or redistribute
28  the parser skeleton itself, you may (at your option) remove this
29  special exception, which will cause the skeleton and the resulting
30  Bison output files to be licensed under the GNU General Public
31  License without this special exception.
32 
33  This special exception was added by the Free Software Foundation in
34  version 2.2 of Bison. */
35 
36 /* Tokens. */
37 #ifndef YYTOKENTYPE
38 # define YYTOKENTYPE
39  /* Put the tokens into the symbol table, so that GDB and other debuggers
40  know about them. */
41  enum yytokentype {
42  NUMBER = 258,
43  MONTH = 259,
44  WDAY = 260,
45  COLOR = 261,
46  STRING = 262,
47  IN = 263,
48  PLUS = 264,
49  MINUS = 265,
50  SMALL = 266,
51  CYEAR = 267,
52  LEAPYEAR = 268,
53  SHIFT = 269,
54  IF = 270,
55  LENGTH = 271,
56  EASTER = 272,
57  EQ = 273,
58  NE = 274,
59  LE = 275,
60  GE = 276,
61  LT = 277,
62  GT = 278,
63  PASCHA = 279,
64  OR = 280,
65  AND = 281,
66  UMINUS = 282
67  };
68 #endif
69 /* Tokens. */
70 #define NUMBER 258
71 #define MONTH 259
72 #define WDAY 260
73 #define COLOR 261
74 #define STRING 262
75 #define IN 263
76 #define PLUS 264
77 #define MINUS 265
78 #define SMALL 266
79 #define CYEAR 267
80 #define LEAPYEAR 268
81 #define SHIFT 269
82 #define IF 270
83 #define LENGTH 271
84 #define EASTER 272
85 #define EQ 273
86 #define NE 274
87 #define LE 275
88 #define GE 276
89 #define LT 277
90 #define GT 278
91 #define PASCHA 279
92 #define OR 280
93 #define AND 281
94 #define UMINUS 282
95 
96 
97 
98 
99 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
100 typedef union YYSTYPE
101 #line 111 "parseholiday.y"
102 { int ival; char *sval; }
103 /* Line 1529 of yacc.c. */
104 #line 105 "parseholiday.h"
105  YYSTYPE;
106 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
107 # define YYSTYPE_IS_DECLARED 1
108 # define YYSTYPE_IS_TRIVIAL 1
109 #endif
110 
111 extern YYSTYPE kcallval;
112