Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6520b685fd03669cf93a879f13e01b6436c299b3 authored by Benjamin Peterson on 11 June 2009, 22:12:47 UTC
Blocked revisions 73372 via svnmerge
Tip revision: 6520b68
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