home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cproto.zip / cproto46 / porting / getopt.h < prev    next >
C/C++ Source or Header  |  1994-10-12  |  156b  |  9 lines

  1. extern char *optarg;
  2. extern int optind, opterr;
  3.  
  4. #if defined(__STDC__)
  5. int getopt (int argc, char **argv, const char *options);
  6. #else
  7. int getopt ();
  8. #endif
  9.