blob: df6f18354ee02f97978b6a4482f391dca20aedf1 [file] [log] [blame]
Benjamin Petersone425bd72017-12-14 23:48:12 -08001#ifndef Py_INTERNAL_PYGETOPT_H
2#define Py_INTERNAL_PYGETOPT_H
3
4int _PyOS_opterr;
5int _PyOS_optind;
6wchar_t *_PyOS_optarg;
7
8void _PyOS_ResetGetOpt(void);
9
10typedef struct {
11 const wchar_t *name;
12 int has_arg;
13 int val;
14} _PyOS_LongOption;
15
16int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring,
17 const _PyOS_LongOption *longopts, int *longindex);
18
19#endif /* !Py_INTERNAL_PYGETOPT_H */