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