pci: don't do sanity check for missing pci bus, the check can misfire.
[minix.git] / commands / yap / getcomm.h
blob3db0b57f83d18b6fe0d46ba279e9b5d95bf2dee0
1 /* Copyright (c) 1985 Ceriel J.H. Jacobs */
3 /* $Header$ */
5 # ifndef _GETCOMM_
6 # define PUBLIC extern
7 # else
8 # define PUBLIC
9 # endif
11 int getcomm();
13 * int getcomm()
15 * Reads commands given by the user. The command is returned.
18 VOID shellescape();
20 * void shellescape(command)
21 * char *command; The shell command to be executed
23 * Expands '%' and '!' in the command "command" to the current filename
24 * and the previous command respectively, and then executes "command".
27 char * readline();
29 * char * readline(prompt)
30 * char *prompt; Prompt given to the user
32 * Gives a prompt "prompt" and reads a line to be typed in by the user.
33 * A pointer to this line is returned. Space for this line is static.
36 # undef PUBLIC