blob: 9c74cbe95213baf04df06a9b5835e1cda779ad75 [file] [log] [blame]
Thomas Wouters2cffc7d2000-11-03 08:18:37 +00001
2#ifndef Py_PYGETOPT_H
3#define Py_PYGETOPT_H
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8extern DL_IMPORT(int) _PyOS_opterr;
9extern DL_IMPORT(int) _PyOS_optind;
10extern DL_IMPORT(char *) _PyOS_optarg;
11
12DL_IMPORT(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
13
14#ifdef __cplusplus
15}
16#endif
17#endif /* !Py_PYGETOPT_H */