home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 8 / IOPROG_8.ISO / install / fips / source / getopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-25  |  441 b   |  30 lines

  1. /*
  2.  
  3.  *  $Header$
  4.  
  5.  *
  6.  
  7.  *  Copyright (C) 1994 Arno Schaefer
  8.  
  9.  *
  10.  
  11.  *  AU: Prototypen und externe Variablen fuer getopt ()
  12.  
  13.  *
  14.  
  15.  *  PO: ANSI C
  16.  
  17.  */
  18.  
  19.  
  20.  
  21. #ifndef GETOPT_H
  22.  
  23. #define GETOPT_H
  24.  
  25.  
  26.  
  27. #ifdef __cplusplus
  28.  
  29. extern "C" {
  30.  
  31. #endif
  32.  
  33.  
  34.  
  35. extern char *optarg;
  36.  
  37. extern int optind;
  38.  
  39. extern int opterr;
  40.  
  41. extern int optopt;
  42.  
  43.  
  44.  
  45. int getopt (int argc, char *argv[], char *optstring);
  46.  
  47.  
  48.  
  49. #ifdef __cplusplus
  50.  
  51. }
  52.  
  53. #endif
  54.  
  55.  
  56.  
  57. #endif
  58.  
  59.