improve behaviour under VPC, fixes from nicolas tittley.
[minix.git] / commands / yap / options.h
blobf3ea75da52ee767806e630be5ac6dce26cc0c577
1 /* Copyright (c) 1985 Ceriel J.H. Jacobs */
3 /* $Header$ */
5 # ifndef _OPTIONS_
6 # define PUBLIC extern
7 # else
8 # define PUBLIC
9 # endif
11 PUBLIC int cflag; /* no home before each page */
12 PUBLIC int uflag; /* no underlining */
13 PUBLIC int nflag; /* no pattern matching on input */
14 PUBLIC int qflag; /* no exit on the next page command */
15 PUBLIC char * startcomm; /* There was a command option */
17 char ** readoptions();
19 * char ** readoptions(argv)
20 * char **argv; Arguments given to yap.
22 * process the options from the arguments. Return 0 if there was an error,
23 * otherwise return a pointer to where the filenames start.
26 # undef PUBLIC