Staging
v0.5.1
https://github.com/python/cpython
Revision bc7cbcbc8f45a95dd715aa37ac5a4fc41070ace0 authored by Marc-André Lemburg on 02 February 2001, 12:07:22 UTC, committed by Marc-André Lemburg on 02 February 2001, 12:07:22 UTC
1 parent 4d282de
Raw File
Tip revision: bc7cbcbc8f45a95dd715aa37ac5a4fc41070ace0 authored by Marc-André Lemburg on 02 February 2001, 12:07:22 UTC
Added new Python C API _test module to the build mechanism on Unix.
Tip revision: bc7cbcb
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) _PyOS_opterr;
extern DL_IMPORT(int) _PyOS_optind;
extern DL_IMPORT(char *) _PyOS_optarg;

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

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