Imported Upstream version 2.5.1
[debian/amanda] / oldrecover-src / uparse.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      LISTHOST = 258,
33      LISTDISK = 259,
34      SETHOST = 260,
35      SETDISK = 261,
36      SETDATE = 262,
37      SETTAPE = 263,
38      SETMODE = 264,
39      CD = 265,
40      CDX = 266,
41      QUIT = 267,
42      DHIST = 268,
43      LS = 269,
44      ADD = 270,
45      ADDX = 271,
46      EXTRACT = 272,
47      LIST = 273,
48      DELETE = 274,
49      DELETEX = 275,
50      PWD = 276,
51      CLEAR = 277,
52      HELP = 278,
53      LCD = 279,
54      LPWD = 280,
55      MODE = 281,
56      SMB = 282,
57      TAR = 283,
58      PATH = 284,
59      DATE = 285
60    };
61 #endif
62 /* Tokens.  */
63 #define LISTHOST 258
64 #define LISTDISK 259
65 #define SETHOST 260
66 #define SETDISK 261
67 #define SETDATE 262
68 #define SETTAPE 263
69 #define SETMODE 264
70 #define CD 265
71 #define CDX 266
72 #define QUIT 267
73 #define DHIST 268
74 #define LS 269
75 #define ADD 270
76 #define ADDX 271
77 #define EXTRACT 272
78 #define LIST 273
79 #define DELETE 274
80 #define DELETEX 275
81 #define PWD 276
82 #define CLEAR 277
83 #define HELP 278
84 #define LCD 279
85 #define LPWD 280
86 #define MODE 281
87 #define SMB 282
88 #define TAR 283
89 #define PATH 284
90 #define DATE 285
91
92
93
94
95 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
96 #line 42 "uparse.y"
97 typedef union YYSTYPE {
98         int     intval;
99         double  floatval;
100         char *  strval;
101         int     subtok;
102 } YYSTYPE;
103 /* Line 1447 of yacc.c.  */
104 #line 105 "uparse.h"
105 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
106 # define YYSTYPE_IS_DECLARED 1
107 # define YYSTYPE_IS_TRIVIAL 1
108 #endif
109
110 extern YYSTYPE yylval;
111
112
113