Staging
v0.5.1
https://github.com/python/cpython
Revision ebcd0ced14388d5859e4c57e9916a3f18e35e9c2 authored by Antoine Pitrou on 05 September 2008, 23:30:23 UTC, committed by Antoine Pitrou on 05 September 2008, 23:30:23 UTC
1 parent cdeb24b
Raw File
Tip revision: ebcd0ced14388d5859e4c57e9916a3f18e35e9c2 authored by Antoine Pitrou on 05 September 2008, 23:30:23 UTC
Issue #3535: zipfile couldn't read some zip files larger than 2GB.
Tip revision: ebcd0ce
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