ack/util/LLgen/src/global.c
1988-06-22 16:23:36 +00:00

68 lines
1.2 KiB
C

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
*/
/*
* L L G E N
*
* An Extended LL(1) Parser Generator
*
* Author : Ceriel J.H. Jacobs
*/
/*
* global.c
* Contains declarations visible in several other source files
*/
# include "types.h"
# include "extern.h"
# include "io.h"
# ifndef NORCSID
static string rcsid4 = "$Header$";
# endif
char ltext[LTEXTSZ];
p_nont nonterms;
p_nont maxnt;
int nnonterms;
p_token tokens;
p_token maxt;
int ntokens;
int nterms, nalts;
p_order porder, sorder;
p_start start;
int linecount;
int assval;
FILE *fout;
FILE *fpars;
FILE *finput;
FILE *fact;
string f_pars = PARSERFILE;
string f_out = OUTFILE;
string f_temp = ACTFILE;
string f_input;
string e_noopen = "Cannot open %s";
int verbose;
int wflag;
string lexical;
string onerror;
int ntneeded;
int ntprint;
# ifndef NDEBUG
int debug;
# endif not NDEBUG
p_file files;
p_file maxfiles;
p_file pfile;
string LLgenid = "/* LLgen generated code from source %s */\n";
t_token lextoken;
int nerrors;
string rec_file, incl_file;
int low_percentage = 10, high_percentage = 30;
int min_cases_for_jmptable = 8;
int jmptable_option;