1 /*
2  *  A Z-Machine
3  *  Copyright (C) 2000 Andrew Hunter
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public
7  *  License as published by the Free Software Foundation; either
8  *  version 2.1 of the License, or (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free Software
17  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19 
20 /*
21  * Deal with the .zoomrc file
22  */
23 
24 #define	yymaxdepth rc_maxdepth
25 #define	yyparse rc_parse
26 #define	yylex rc_lex
27 #define	yyerror rc_error
28 #define	yylval rc_lval
29 #define	yychar rc_char
30 #define	yydebug rc_debug
31 #define	yypact rc_pact
32 #define	yyr1 rc_r1
33 #define	yyr2 rc_r2
34 #define	yydef rc_def
35 #define	yychk rc_chk
36 #define	yypgo rc_pgo
37 #define	yyact rc_act
38 #define	yyexca rc_exca
39 #define yyerrflag rc_errflag
40 #define yynerrs rc_nerrs
41 #define	yyps rc_ps
42 #define	yypv rc_pv
43 #define	yys rc_s
44 #define	yy_yys rc_yys
45 #define	yystate rc_state
46 #define	yytmp rc_tmp
47 #define	yyv rc_v
48 #define	yy_yyv rc_yyv
49 #define	yyval rc_val
50 #define	yylloc rc_lloc
51 #define yyreds rc_reds
52 #define yytoks rc_toks
53 #define yylhs rc_yylhs
54 #define yylen rc_yylen
55 #define yydefred rc_yydefred
56 #define yydgoto rc_yydgoto
57 #define yysindex rc_yysindex
58 #define yyrindex rc_yyrindex
59 #define yygindex rc_yygindex
60 #define yytable	 rc_yytable
61 #define yycheck	 rc_yycheck
62 #define yyname   rc_yyname
63 #define yyrule   rc_yyrule
64 
65 #define yyss        rc_yyss
66 #define yysslim     rc_yysslim
67 #define yyssp       rc_yyssp
68 #define yystacksize rc_yystacksize
69 #define yyvs        rc_yyvs
70 #define yyvsp       rc_yyvsp
71 
72 typedef struct stringlist
73 {
74   char* string;
75   struct stringlist* next;
76 } stringlist;
77