Source: classlib/include/getopt.h
|
|
|
|
/***************************************************************************
getopt.h - description
-------------------
begin : Thu Jan 10 2002
copyright : (C) 2002 by Nicola De Nisco
email : nicola@winada.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef __GETOPT_H
#define __GETOPT_H
#include <_defs.h>
#ifdef __cplusplus
extern "C" {
#endif
extern int optind; /* index of which argument is next */
extern char *optarg; /* pointer to argument of current option */
extern int opterr; /* allow error message */
int getopt(int argc, char **argv, char *optionS);
#ifdef __cplusplus
}
#endif
#endif // __GETOPT_H
Generated by: nicola on gulliver.wadahome.it on Sun May 25 13:54:34 2003, using kdoc 2.0a53. |