Staging
v0.5.1
https://github.com/python/cpython
Revision f9756c2336029d082317718cd1b2e330f48164d6 authored by Ezio Melotti on 09 May 2011, 15:36:53 UTC, committed by Ezio Melotti on 09 May 2011, 15:36:53 UTC
1 parent 2f48d89
Raw File
Tip revision: f9756c2336029d082317718cd1b2e330f48164d6 authored by Ezio Melotti on 09 May 2011, 15:36:53 UTC
Some more tests were incorrectly marked as C specific.
Tip revision: f9756c2
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