1 /* File names and variables for bison,
2 Copyright 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison 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)
11 Bison 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.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
24 /* File name specified with -o for the output file, or 0 if no -o. */
25 extern char *spec_outfile
;
27 /* File name for the parser (i.e., the one above, or its default.) */
28 extern char *parser_file_name
;
31 extern const char *spec_name_prefix
;
33 /* File name pfx specified with -b, or 0 if no -b. */
34 extern char *spec_file_prefix
;
37 extern char *spec_verbose_file
;
39 /* File name specified for the output VCG graph. */
40 extern char *spec_graph_file
;
42 /* File name specified with --defines. */
43 extern char *spec_defines_file
;
45 /* Read grammar specifications. */
49 /* Output all the action code; precise form depends on which parser. */
50 extern struct obstack action_obstack
;
52 /* If semantic parser, output a .h file that defines YYSTYPE... */
53 extern struct obstack attrs_obstack
;
55 /* The verbose output. */
56 extern struct obstack output_obstack
;
59 extern char *attrsfile
;
61 void compute_output_file_names
PARAMS((void));
63 FILE *xfopen
PARAMS ((const char *name
, const char *mode
));
64 int xfclose
PARAMS ((FILE *ptr
));
66 /* Compute the double inclusion guard's name. */
67 char *compute_header_macro
PARAMS ((void));
69 const char *skeleton_find
PARAMS ((const char *envvar
,
70 const char *skeleton_name
));
72 /* Is SUFFIX ending STRING? */
73 int strsuffix (const char* string
, const char* suffix
);
75 /* Return a newly allocated string composed of the concatenation of
76 STRING1, and STRING2. */
77 char* stringappend (const char* string1
, const char* string2
);
79 /* Prefix used to generate output file names. */
80 extern char *short_base_name
;
82 /* Infix used to generate output file names (i.e., `.tab', or `_tab',
84 extern char *output_infix
;
86 #endif /* !FILES_H_ */