Staging
v0.8.1
https://github.com/python/cpython
Revision afa1b309690ef6ea93500660a4c6d85a515e07df authored by Benjamin Peterson on 21 June 2010, 15:27:46 UTC, committed by Benjamin Peterson on 21 June 2010, 15:27:46 UTC
1 parent a45e6d5
Raw File
Tip revision: afa1b309690ef6ea93500660a4c6d85a515e07df authored by Benjamin Peterson on 21 June 2010, 15:27:46 UTC
fix finding visual studio 2008 on 64 bit #8854
Tip revision: afa1b30
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