2000-11-03 09:18:37 +01:00
|
|
|
|
|
|
|
#ifndef Py_PYGETOPT_H
|
|
|
|
#define Py_PYGETOPT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-12-03 21:14:31 +01:00
|
|
|
#ifndef Py_LIMITED_API
|
2002-08-12 09:21:58 +02:00
|
|
|
PyAPI_DATA(int) _PyOS_opterr;
|
|
|
|
PyAPI_DATA(int) _PyOS_optind;
|
2008-04-05 22:41:37 +02:00
|
|
|
PyAPI_DATA(wchar_t *) _PyOS_optarg;
|
2012-02-21 19:03:47 +01:00
|
|
|
|
|
|
|
PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
|
2010-12-03 21:14:31 +01:00
|
|
|
#endif
|
2000-11-03 09:18:37 +01:00
|
|
|
|
2008-04-05 22:41:37 +02:00
|
|
|
PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
|
2000-11-03 09:18:37 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_PYGETOPT_H */
|