blob: 9860d360e1e68392764edbf8c69e4915ac855e37 [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;
10PyAPI_DATA(char *) _PyOS_optarg;
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000011
Antoine Pitroucc3fa882012-02-21 20:42:48 +010012PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
Mark Hammond91a681d2002-08-12 07:21:58 +000013PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000014
15#ifdef __cplusplus
16}
17#endif
18#endif /* !Py_PYGETOPT_H */