Imported Upstream version 3.3.1
[debian/amanda] / oldrecover-src / uparse.h
1 /* A Bison parser, made by GNU Bison 2.5.  */
2
3 /* Bison interface for Yacc-like parsers in C
4    
5       Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
6    
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* As a special exception, you may create a larger work that contains
21    part or all of the Bison parser skeleton and distribute that work
22    under terms of your choice, so long as that work isn't itself a
23    parser generator using the skeleton or a modified version thereof
24    as a parser skeleton.  Alternatively, if you modify or redistribute
25    the parser skeleton itself, you may (at your option) remove this
26    special exception, which will cause the skeleton and the resulting
27    Bison output files to be licensed under the GNU General Public
28    License without this special exception.
29    
30    This special exception was added by the Free Software Foundation in
31    version 2.2 of Bison.  */
32
33
34 /* Tokens.  */
35 #ifndef YYTOKENTYPE
36 # define YYTOKENTYPE
37    /* Put the tokens into the symbol table, so that GDB and other debuggers
38       know about them.  */
39    enum yytokentype {
40      LISTHOST = 258,
41      LISTDISK = 259,
42      SETHOST = 260,
43      SETDISK = 261,
44      SETDATE = 262,
45      SETTAPE = 263,
46      SETMODE = 264,
47      CD = 265,
48      CDX = 266,
49      QUIT = 267,
50      DHIST = 268,
51      LS = 269,
52      ADD = 270,
53      ADDX = 271,
54      EXTRACT = 272,
55      LIST = 273,
56      DELETE = 274,
57      DELETEX = 275,
58      PWD = 276,
59      CLEAR = 277,
60      HELP = 278,
61      LCD = 279,
62      LPWD = 280,
63      MODE = 281,
64      SMB = 282,
65      TAR = 283,
66      PATH = 284,
67      DATE = 285
68    };
69 #endif
70 /* Tokens.  */
71 #define LISTHOST 258
72 #define LISTDISK 259
73 #define SETHOST 260
74 #define SETDISK 261
75 #define SETDATE 262
76 #define SETTAPE 263
77 #define SETMODE 264
78 #define CD 265
79 #define CDX 266
80 #define QUIT 267
81 #define DHIST 268
82 #define LS 269
83 #define ADD 270
84 #define ADDX 271
85 #define EXTRACT 272
86 #define LIST 273
87 #define DELETE 274
88 #define DELETEX 275
89 #define PWD 276
90 #define CLEAR 277
91 #define HELP 278
92 #define LCD 279
93 #define LPWD 280
94 #define MODE 281
95 #define SMB 282
96 #define TAR 283
97 #define PATH 284
98 #define DATE 285
99
100
101
102
103 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
104 typedef union YYSTYPE
105 {
106
107 /* Line 2068 of yacc.c  */
108 #line 42 "uparse.y"
109
110         int     intval;
111         double  floatval;
112         char *  strval;
113         int     subtok;
114
115
116
117 /* Line 2068 of yacc.c  */
118 #line 119 "uparse.h"
119 } YYSTYPE;
120 # define YYSTYPE_IS_TRIVIAL 1
121 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
122 # define YYSTYPE_IS_DECLARED 1
123 #endif
124
125 extern YYSTYPE yylval;
126
127