pygetopt.h 366 B

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