Staging
v0.5.1
https://github.com/python/cpython
Revision b467d1542a5d0e852a8a12e48e88c15f0c03bd98 authored by Ned Deily on 02 August 2013, 06:53:24 UTC, committed by Ned Deily on 02 August 2013, 06:53:24 UTC
2 parent s 970a87f + cd3d8fb
Raw File
Tip revision: b467d1542a5d0e852a8a12e48e88c15f0c03bd98 authored by Ned Deily on 02 August 2013, 06:53:24 UTC
Issue #18517: merge from 3.3
Tip revision: b467d15
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