Staging
v0.8.1
Revision eebb252e6b67c4dcbc079cdf3f06c9e820fcc514 authored by Georg Brandl on 18 December 2010, 12:01:15 UTC, committed by Georg Brandl on 18 December 2010, 12:01:15 UTC
1 parent 5d53fdd
Raw File
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;
#endif

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

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