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