Staging
v0.8.1
https://github.com/python/cpython
Revision c49b6efbca22929b9afc25de98c31aae3728cf8a authored by Tarek Ziadé on 06 March 2010, 02:17:28 UTC, committed by Tarek Ziadé on 06 March 2010, 02:17:28 UTC
1 parent 5501e6a
Raw File
Tip revision: c49b6efbca22929b9afc25de98c31aae3728cf8a authored by Tarek Ziadé on 06 March 2010, 02:17:28 UTC
search in the alternative location for VCExpress
Tip revision: c49b6ef
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