Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: cd2070590286b52b7aebfb4ed4fe409ac759f94d authored by Benjamin Peterson on 29 May 2011, 21:50:27 UTC
bump to 2.7.2rc1
Tip revision: cd20705
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(char *) _PyOS_optarg;

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

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