home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / include / util / hsgetopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-22  |  353 b   |  14 lines

  1. /* 
  2.  *   The function definitions for Henry Spencer's getopt code
  3.  */
  4. #if defined(__STDC__) || defined(__GNUC__) || defined(sgi)
  5. #define PROTO(ARGS)    ARGS
  6. #else
  7. #define PROTO(ARGS)    ()
  8. #endif
  9.  
  10. void hs_resetopt PROTO((void)) ;
  11. int hs_getopt PROTO((register int argc, register char **argv, char *optstring)) ;
  12. extern int hs_optind;
  13. extern char * hs_optarg;
  14.