home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / units_am.zip / GETOPT.H < prev    next >
C/C++ Source or Header  |  1992-04-19  |  346b  |  11 lines

  1. #ifndef GETOPT_H
  2. #define GETOPT_H
  3. #include "proto.h"                /* define PROTO */
  4.  
  5. int getopt PROTO((int, char **, char *));
  6. extern char *optarg;                /* current argv string */
  7. extern int optind;                /* current argv index */
  8. extern int optopt;                /* option character */
  9. extern int opterr;                /* getopt prints errors if 1 */
  10. #endif /* GETOPT_H */
  11.