#ifndef _GETOPT_H
#define _GETOPT_H
/*                                                      
**      $VER: getopt.h 1.0 (10.1.94)             
**                                                      
**      Command line option parsing utilities.
**                                                      
**      (C) Copyright 1994 Rainer Koppler
*/

extern char *optarg;  /* argument of the current option */
extern int   optind;  /* index of first non-option argument (after EOF) */
extern int   optopt;  /* option character found at last call of getopt() */
extern int   opterr;  /* set by user, !=0: getopt() prints error messages */

extern int getopt(int argc, char *argv[], char *optString);


#endif /*_GETOPT_H*/
