home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************************
-
- getopt.h
-
- ANSI Header file for GNU getopt utility
-
- NOT #included by getopt.c as that isn't ANSI!
-
- Files written for ???ix probably won't need this.
-
- *******************************************************************************/
-
- extern int optind;
- extern char *optarg;
- extern int opterr;
-
- extern int getopt ( int argc, char *argv[], char *optstring );
-
-
-
-