pygetopt.h 315 Bytes
Newer Older
1 2 3 4 5 6 7

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

8 9
PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
10
PyAPI_DATA(wchar_t *) _PyOS_optarg;
11

12
PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
13 14 15 16 17

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYGETOPT_H */