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