diff options
-rw-r--r-- | src/cmd/getflags/getflags.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cmd/getflags/getflags.h b/src/cmd/getflags/getflags.h new file mode 100644 index 00000000..ca7167b2 --- /dev/null +++ b/src/cmd/getflags/getflags.h @@ -0,0 +1,10 @@ +#define NFLAG 128 +#define NCMDLINE 512 +#define NGETFLAGSARGV 256 +extern char **flag[NFLAG]; +extern char cmdline[NCMDLINE+1]; +extern char *cmdname; +extern char *flagset[]; +extern char *getflagsargv[NGETFLAGSARGV+2]; +int getflags(int, char *[], char *); +void usage(char *); |