summaryrefslogtreecommitdiff
path: root/src/quote_fmt_parse.h
diff options
context:
space:
mode:
authorSimeon Simeonov2018-02-26 11:23:00 +0100
committerSimeon Simeonov2018-02-26 11:23:00 +0100
commit0b3cbf57875fd692e4ba0b336fefa4bee1ed00dc (patch)
treeaf916a30553c78ce9d4f2d8658656a175c5b6921 /src/quote_fmt_parse.h
Initial commit for sylpheed 3.7.0
Diffstat (limited to 'src/quote_fmt_parse.h')
-rw-r--r--src/quote_fmt_parse.h132
1 files changed, 132 insertions, 0 deletions
diff --git a/src/quote_fmt_parse.h b/src/quote_fmt_parse.h
new file mode 100644
index 0000000..f1057a7
--- /dev/null
+++ b/src/quote_fmt_parse.h
@@ -0,0 +1,132 @@
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 SHOW_NEWSGROUPS = 258,
43 SHOW_DATE = 259,
44 SHOW_FROM = 260,
45 SHOW_FULLNAME = 261,
46 SHOW_FIRST_NAME = 262,
47 SHOW_SENDER_INITIAL = 263,
48 SHOW_SUBJECT = 264,
49 SHOW_TO = 265,
50 SHOW_MESSAGEID = 266,
51 SHOW_PERCENT = 267,
52 SHOW_CC = 268,
53 SHOW_REFERENCES = 269,
54 SHOW_MESSAGE = 270,
55 SHOW_QUOTED_MESSAGE = 271,
56 SHOW_BACKSLASH = 272,
57 SHOW_TAB = 273,
58 SHOW_QUOTED_MESSAGE_NO_SIGNATURE = 274,
59 SHOW_MESSAGE_NO_SIGNATURE = 275,
60 SHOW_EOL = 276,
61 SHOW_QUESTION_MARK = 277,
62 SHOW_OPARENT = 278,
63 SHOW_CPARENT = 279,
64 QUERY_DATE = 280,
65 QUERY_FROM = 281,
66 QUERY_FULLNAME = 282,
67 QUERY_SUBJECT = 283,
68 QUERY_TO = 284,
69 QUERY_NEWSGROUPS = 285,
70 QUERY_MESSAGEID = 286,
71 QUERY_CC = 287,
72 QUERY_REFERENCES = 288,
73 OPARENT = 289,
74 CPARENT = 290,
75 CHARACTER = 291
76 };
77#endif
78/* Tokens. */
79#define SHOW_NEWSGROUPS 258
80#define SHOW_DATE 259
81#define SHOW_FROM 260
82#define SHOW_FULLNAME 261
83#define SHOW_FIRST_NAME 262
84#define SHOW_SENDER_INITIAL 263
85#define SHOW_SUBJECT 264
86#define SHOW_TO 265
87#define SHOW_MESSAGEID 266
88#define SHOW_PERCENT 267
89#define SHOW_CC 268
90#define SHOW_REFERENCES 269
91#define SHOW_MESSAGE 270
92#define SHOW_QUOTED_MESSAGE 271
93#define SHOW_BACKSLASH 272
94#define SHOW_TAB 273
95#define SHOW_QUOTED_MESSAGE_NO_SIGNATURE 274
96#define SHOW_MESSAGE_NO_SIGNATURE 275
97#define SHOW_EOL 276
98#define SHOW_QUESTION_MARK 277
99#define SHOW_OPARENT 278
100#define SHOW_CPARENT 279
101#define QUERY_DATE 280
102#define QUERY_FROM 281
103#define QUERY_FULLNAME 282
104#define QUERY_SUBJECT 283
105#define QUERY_TO 284
106#define QUERY_NEWSGROUPS 285
107#define QUERY_MESSAGEID 286
108#define QUERY_CC 287
109#define QUERY_REFERENCES 288
110#define OPARENT 289
111#define CPARENT 290
112#define CHARACTER 291
113
114
115
116
117#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
118typedef union YYSTYPE
119#line 129 "quote_fmt_parse.y"
120{
121 char chr;
122}
123/* Line 1489 of yacc.c. */
124#line 125 "y.tab.h"
125 YYSTYPE;
126# define yystype YYSTYPE /* obsolescent; will be withdrawn */
127# define YYSTYPE_IS_DECLARED 1
128# define YYSTYPE_IS_TRIVIAL 1
129#endif
130
131extern YYSTYPE yylval;
132