home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / sqmurd01.zip / getopt.h < prev    next >
C/C++ Source or Header  |  1995-10-08  |  147b  |  10 lines

  1. #ifndef GETOPT_H
  2. #define GETOPT_H
  3.  
  4. extern int getopt(int argc, char **argv, char *opts);
  5.  
  6. extern int optind;
  7. extern char *optarg;
  8.  
  9. #endif
  10.