Staging
v0.8.1
Revision eba99dfde8b30e0671200b0dc52eccec91cf7cb3 authored by Raymond Hettinger on 05 October 2008, 17:57:52 UTC, committed by Raymond Hettinger on 05 October 2008, 17:57:52 UTC
1 parent 9fce0ba
Raw File
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