ack/util/ncgg/main.c

84 lines
1.3 KiB
C
Raw Normal View History

1987-03-09 19:15:41 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1985-01-08 09:59:28 +00:00
#ifndef NORCSID
static char rcsid[] = "$Id$";
1985-01-08 09:59:28 +00:00
#endif
#include <stdlib.h>
1985-01-08 09:59:28 +00:00
#include <stdio.h>
#include "param.h"
#include "hall.h"
#include "expr.h"
#include "extern.h"
1985-01-08 09:59:28 +00:00
char *filename;
extern void enterkeyw(void);
extern void initio(void);
extern void initemhash(void);
extern void finishio(void);
extern void statistics(void);
extern int yyparse(void);
int main(int argc, char **argv)
{
1985-01-08 09:59:28 +00:00
extern int nerrors;
extern int code_in_c;
extern int tabledebug;
extern int verbose;
while (argc > 1 && argv[1][0] == '-')
{
switch (argv[1][1])
{
case 'c':
code_in_c = 0;
break;
case 'd':
tabledebug++;
break;
case 'v':
verbose++;
break;
default:
error("Unknown flag -%c", argv[1][1]);
1985-01-08 09:59:28 +00:00
}
argc--;
argv++;
1985-01-08 09:59:28 +00:00
}
if (argc == 2)
{
if (freopen(argv[1], "r", stdin) == NULL)
{
error("Can't open %s", argv[1]);
1985-01-08 09:59:28 +00:00
exit(-1);
}
filename = argv[1];
1987-01-12 14:38:45 +00:00
}
else if (argc == 1)
{
1987-01-12 14:38:45 +00:00
filename = "";
}
else
error("Usage: %s [-c] [-d] [-v] [table]", argv[0]);
1985-01-08 09:59:28 +00:00
initemhash();
enterkeyw();
initnodes();
initio();
yyparse();
if (nerrors == 0)
{
1985-01-08 09:59:28 +00:00
finishio();
statistics();
if (verbose)
hallverbose();
}
else
{
1985-01-08 09:59:28 +00:00
errorexit();
}
exit(nerrors == 0 ? 0 : -1);
1985-01-08 09:59:28 +00:00
}