home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume26
/
op
/
part01
/
defs.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-26
|
870b
|
22 lines
/* +-------------------------------------------------------------------+ */
/* | Copyright 1991, David Koblas. | */
/* | Permission to use, copy, modify, and distribute this software | */
/* | and its documentation for any purpose and without fee is hereby | */
/* | granted, provided that the above copyright notice appear in all | */
/* | copies and that both that copyright notice and this permission | */
/* | notice appear in supporting documentation. This software is | */
/* | provided "as is" without express or implied warranty. | */
/* +-------------------------------------------------------------------+ */
typedef struct cmd_s {
char *name;
int nargs, nopts;
int margs, mopts;
char **args, **opts;
struct cmd_s *next;
} cmd_t;
extern cmd_t *First, *Build();
#define MAXSTRLEN 256