pygetopt.h 388 B

123456789101112131415161718192021
  1. #ifndef Py_PYGETOPT_H
  2. #define Py_PYGETOPT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifndef Py_LIMITED_API
  7. PyAPI_DATA(int) _PyOS_opterr;
  8. PyAPI_DATA(int) _PyOS_optind;
  9. PyAPI_DATA(wchar_t *) _PyOS_optarg;
  10. PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
  11. #endif
  12. PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* !Py_PYGETOPT_H */