blob: 8ef2ada72fee2477ddd46e5a3d29917dae270125 [file] [log] [blame]
Benjamin Petersone425bd72017-12-14 23:48:12 -08001#ifndef Py_INTERNAL_PYGETOPT_H
2#define Py_INTERNAL_PYGETOPT_H
3
Benjamin Peterson4c72bc42017-12-17 10:34:00 -08004extern int _PyOS_opterr;
5extern int _PyOS_optind;
6extern wchar_t *_PyOS_optarg;
Benjamin Petersone425bd72017-12-14 23:48:12 -08007
Benjamin Peterson4c72bc42017-12-17 10:34:00 -08008extern void _PyOS_ResetGetOpt(void);
Benjamin Petersone425bd72017-12-14 23:48:12 -08009
10typedef struct {
11 const wchar_t *name;
12 int has_arg;
13 int val;
14} _PyOS_LongOption;
15
Benjamin Peterson4c72bc42017-12-17 10:34:00 -080016extern int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring,
17 const _PyOS_LongOption *longopts, int *longindex);
Benjamin Petersone425bd72017-12-14 23:48:12 -080018
19#endif /* !Py_INTERNAL_PYGETOPT_H */