home *** CD-ROM | disk | FTP | other *** search
/ James Briskly's Game Magazine 2 / JBGM002S.ZIP / SOURCE / GETOPT.H < prev    next >
C/C++ Source or Header  |  1995-08-22  |  412b  |  30 lines

  1. /*
  2.  *  $Header$
  3.  *
  4.  *  Copyright (C) 1994 Arno Schaefer
  5.  *
  6.  *  AU: Prototypen und externe Variablen fuer getopt ()
  7.  *
  8.  *  PO: ANSI C
  9.  */
  10.  
  11. #ifndef GETOPT_H
  12. #define GETOPT_H
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. extern char *optarg;
  19. extern int optind;
  20. extern int opterr;
  21. extern int optopt;
  22.  
  23. int getopt (int argc, char *argv[], char *optstring);
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.  
  29. #endif
  30.