Staging
v0.8.1
https://github.com/python/cpython
Revision a69d886303b301041d8d9a8fbad4b5a59710d63b authored by Ned Deily on 06 September 2017, 06:23:01 UTC, committed by Ned Deily on 06 September 2017, 06:23:01 UTC
1 parent 69003fe
Raw File
Tip revision: a69d886303b301041d8d9a8fbad4b5a59710d63b authored by Ned Deily on 06 September 2017, 06:23:01 UTC
Update pydoc topics for 3.3.7rc1
Tip revision: a69d886
pystrcmp.h
#ifndef Py_STRCMP_H
#define Py_STRCMP_H

#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t);
PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *);

#ifdef MS_WINDOWS
#define PyOS_strnicmp strnicmp
#define PyOS_stricmp stricmp
#else
#define PyOS_strnicmp PyOS_mystrnicmp
#define PyOS_stricmp PyOS_mystricmp
#endif

#ifdef __cplusplus
}
#endif

#endif /* !Py_STRCMP_H */
back to top