Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c7536c4ff5d0ec6924a135004a53b9f0463f3480 authored by Benjamin Peterson on 15 March 2012, 18:57:38 UTC
merge heads
Tip revision: c7536c4
pygetopt.h

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

PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(wchar_t *) _PyOS_optarg;

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

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