Staging
v0.5.1
https://github.com/python/cpython
Revision bdee4947650b9916c79818044d3f4e78263569d1 authored by Georg Brandl on 03 June 2009, 21:00:58 UTC, committed by Georg Brandl on 03 June 2009, 21:00:58 UTC
1 parent 0abc64d
Raw File
Tip revision: bdee4947650b9916c79818044d3f4e78263569d1 authored by Georg Brandl on 03 June 2009, 21:00:58 UTC
#6190: Remove duplicate paragraph.
Tip revision: bdee494
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