date and time created 82/01/18 19:02:33 by linton
authorMark Linton <linton@ucbvax.Berkeley.EDU>
Tue, 19 Jan 1982 11:02:33 +0000 (03:02 -0800)
committerMark Linton <linton@ucbvax.Berkeley.EDU>
Tue, 19 Jan 1982 11:02:33 +0000 (03:02 -0800)
SCCS-vsn: usr.bin/pascal/pdx/command.h 1.1

usr/src/usr.bin/pascal/pdx/command.h [new file with mode: 0644]

diff --git a/usr/src/usr.bin/pascal/pdx/command.h b/usr/src/usr.bin/pascal/pdx/command.h
new file mode 100644 (file)
index 0000000..93d3083
--- /dev/null
@@ -0,0 +1,24 @@
+/* Copyright (c) 1982 Regents of the University of California */
+
+static char sccsid[] = "@(#)command.h 1.1 %G%";
+
+/*
+ * Definitions for the command module.
+ *
+ * The command module scans and parses the commands.  This includes
+ * input file management (i.e. the "source" command), and some error
+ * handling.
+ */
+
+char *initfile;                /* file to read initial commands from */
+BOOLEAN nlflag;                /* for error and signal recovery */
+
+#define HELPFILE "/vb/arpa/linton/lib/pdx.help"
+
+prompt();              /* print a prompt */
+int yyparse();         /* parser generated by yacc */
+lexinit();             /* initialize debugger symbol table */
+gobble();              /* eat input up to a newline for error recovery */
+remake();              /* recompile program, read in new namelist */
+alias();               /* create an alias */
+BOOLEAN isstdin();     /* input is from standard input */