2003-11-27 11:07:31 +01:00
|
|
|
/* last review : october 29th, 2002 */
|
|
|
|
|
|
|
|
#ifndef _GETOPT_H_
|
|
|
|
#define _GETOPT_H_
|
|
|
|
|
|
|
|
extern int opterr;
|
|
|
|
extern int optind;
|
|
|
|
extern int optopt;
|
|
|
|
extern int optreset;
|
|
|
|
extern char *optarg;
|
|
|
|
|
|
|
|
extern int getopt(int nargc, char *const *nargv, const char *ostr);
|
|
|
|
|
2004-04-29 15:10:05 +02:00
|
|
|
#endif /* _GETOPT_H_ */
|