home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / dirutl / touch.arc / GETOPT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-27  |  285 b   |  17 lines

  1.  
  2. /*    getopt.h    header file to supporting getopt()
  3.  */
  4.  
  5. #ifdef __STDC__
  6. #define _Cdecl
  7. #else
  8. #define _Cdecl    cdecl
  9. #endif
  10.  
  11. extern int   _Cdecl optind;
  12. extern char *_Cdecl optarg;
  13. extern int   _Cdecl opterr;
  14.  
  15. int   _Cdecl getopt (int argc, char *argv [], char *optlist);
  16.  
  17.