(getargs, cli_present, cli_get_value): Prototype.

This commit is contained in:
Paul Eggert
2002-10-21 05:29:50 +00:00
parent 930393cf02
commit b8452344de

View File

@@ -37,9 +37,7 @@ extern int raw_flag;
extern int yacc_flag; extern int yacc_flag;
extern char * version_string; extern char * version_string;
getargs(argc,argv) getargs (int argc, char *argv[])
int argc;
char *argv[];
{ {
register char *cp; register char *cp;
static char Input_File[256]; static char Input_File[256];
@@ -145,8 +143,7 @@ getargs(argc,argv)
* See if "NAME" is present * See if "NAME" is present
*/ */
int int
cli_present(Name) cli_present (char *Name)
char *Name;
{ {
struct {int Size; char *Ptr;} Descr; struct {int Size; char *Ptr;} Descr;
@@ -159,9 +156,7 @@ cli_present(Name)
* Get value of "NAME" * Get value of "NAME"
*/ */
int int
cli_get_value(Name,Buffer,Size) cli_get_value (char *Name, char *Buffer, int Size)
char *Name;
char *Buffer;
{ {
struct {int Size; char *Ptr;} Descr1,Descr2; struct {int Size; char *Ptr;} Descr1,Descr2;