jpayne@69: #ifndef Py_STRCMP_H jpayne@69: #define Py_STRCMP_H jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t); jpayne@69: PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *); jpayne@69: jpayne@69: #ifdef MS_WINDOWS jpayne@69: #define PyOS_strnicmp strnicmp jpayne@69: #define PyOS_stricmp stricmp jpayne@69: #else jpayne@69: #define PyOS_strnicmp PyOS_mystrnicmp jpayne@69: #define PyOS_stricmp PyOS_mystricmp jpayne@69: #endif jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: } jpayne@69: #endif jpayne@69: jpayne@69: #endif /* !Py_STRCMP_H */