home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / daytime.zip / getopt.h < prev    next >
C/C++ Source or Header  |  1999-01-31  |  166b  |  8 lines

  1. /* Declarations for getopt. */
  2.  
  3. extern char *optarg;
  4. extern int optind;
  5. extern int opterr;
  6.  
  7. extern int getopt (int argc, char *const *argv, const char *opts);
  8.