gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
436B

  1. #ifndef Py_STRCMP_H
  2. #define Py_STRCMP_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t);
  7. PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *);
  8. #ifdef MS_WINDOWS
  9. #define PyOS_strnicmp strnicmp
  10. #define PyOS_stricmp stricmp
  11. #else
  12. #define PyOS_strnicmp PyOS_mystrnicmp
  13. #define PyOS_stricmp PyOS_mystricmp
  14. #endif
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* !Py_STRCMP_H */
上海开阖软件有限公司 沪ICP备12045867号-1