delete mention of ^Y; currently don't allow ^Y or ^E.
[unix-history] / usr / src / usr.bin / pascal / pdx / command.h
CommitLineData
3cd5310a
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
7d4de299 6 * @(#)command.h 5.3 (Berkeley) %G%
3cd5310a 7 */
11fa5e44
ML
8
9/*
10 * Definitions for the command module.
11 *
12 * The command module scans and parses the commands. This includes
13 * input file management (i.e. the "source" command), and some error
14 * handling.
15 */
16
17char *initfile; /* file to read initial commands from */
18BOOLEAN nlflag; /* for error and signal recovery */
7d4de299 19int prompt(); /* print a prompt */
11fa5e44 20int yyparse(); /* parser generated by yacc */
7d4de299
KB
21int lexinit(); /* initialize debugger symbol table */
22int gobble(); /* eat input up to a newline for error recovery */
23int remake(); /* recompile program, read in new namelist */
24int alias(); /* create an alias */
11fa5e44 25BOOLEAN isstdin(); /* input is from standard input */