Add copyright
[unix-history] / usr / src / usr.bin / pascal / pdx / command.h
CommitLineData
11fa5e44
ML
1/* Copyright (c) 1982 Regents of the University of California */
2
f8e129ac 3/* static char sccsid[] = "@(#)command.h 1.2 %G%"; */
11fa5e44
ML
4
5/*
6 * Definitions for the command module.
7 *
8 * The command module scans and parses the commands. This includes
9 * input file management (i.e. the "source" command), and some error
10 * handling.
11 */
12
13char *initfile; /* file to read initial commands from */
14BOOLEAN nlflag; /* for error and signal recovery */
15
16#define HELPFILE "/vb/arpa/linton/lib/pdx.help"
17
18prompt(); /* print a prompt */
19int yyparse(); /* parser generated by yacc */
20lexinit(); /* initialize debugger symbol table */
21gobble(); /* eat input up to a newline for error recovery */
22remake(); /* recompile program, read in new namelist */
23alias(); /* create an alias */
24BOOLEAN isstdin(); /* input is from standard input */