Staging
v0.5.1
Revision 3f75cc5cb59fde350c64f4584966b59038faaa05 authored by Victor Stinner on 02 March 2010, 22:44:42 UTC, committed by Victor Stinner on 02 March 2010, 22:44:42 UTC
method->d2i(): OpenSSL API changed in OpenSSL 0.9.6m. Patch written by Daniel
Black.
1 parent c0a9d41
Raw File
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