Staging
v0.5.1
https://github.com/python/cpython
Revision 0e0e391fa3954a2583fe464504b86983a22d2577 authored by R David Murray on 16 April 2014, 00:25:18 UTC, committed by R David Murray on 16 April 2014, 00:25:18 UTC
1 parent 65425b4
Raw File
Tip revision: 0e0e391fa3954a2583fe464504b86983a22d2577 authored by R David Murray on 16 April 2014, 00:25:18 UTC
#20874: update tutorial wording: sophisticated line editing is now standard.
Tip revision: 0e0e391
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