]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.10/Include/pystrcmp.h
AppPkg/Applications/Python/Python-2.7.10: Initial Checkin part 1/5.
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Include / pystrcmp.h
CommitLineData
c8042e10
DM
1#ifndef Py_STRCMP_H\r
2#define Py_STRCMP_H\r
3\r
4#ifdef __cplusplus\r
5extern "C" {\r
6#endif\r
7\r
8PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t);\r
9PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *);\r
10\r
11#if defined(MS_WINDOWS) || defined(PYOS_OS2)\r
12#define PyOS_strnicmp strnicmp\r
13#define PyOS_stricmp stricmp\r
14#else\r
15#define PyOS_strnicmp PyOS_mystrnicmp\r
16#define PyOS_stricmp PyOS_mystricmp\r
17#endif\r
18\r
19#ifdef __cplusplus\r
20}\r
21#endif\r
22\r
23#endif /* !Py_STRCMP_H */\r