Staging
v0.8.1
https://github.com/python/cpython
Revision d113c967b4810b504d97ec97459dc85bd3a3facd authored by Benjamin Peterson on 18 July 2015, 17:59:13 UTC, committed by Benjamin Peterson on 18 July 2015, 17:59:13 UTC
1 parent 92b3e06
Raw File
Tip revision: d113c967b4810b504d97ec97459dc85bd3a3facd authored by Benjamin Peterson on 18 July 2015, 17:59:13 UTC
improve style of the convert macro (#24655)
Tip revision: d113c96
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(wchar_t *) _PyOS_optarg;

PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
#endif

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYGETOPT_H */
back to top