blob: 19e3fd1d301ec3f8d985ef9cbc24f93a8572062c [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
Mark Hammond91a681d2002-08-12 07:21:58 +00008PyAPI_DATA(int) _PyOS_opterr;
9PyAPI_DATA(int) _PyOS_optind;
Martin v. Löwis790465f2008-04-05 20:41:37 +000010PyAPI_DATA(wchar_t *) _PyOS_optarg;
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000011
Martin v. Löwis790465f2008-04-05 20:41:37 +000012PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000013
14#ifdef __cplusplus
15}
16#endif
17#endif /* !Py_PYGETOPT_H */