gooderp18绿色标准版
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

24 linhas
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