Staging
v0.8.1
https://github.com/python/cpython
Revision e84089e3f1000ba1d060931e416dc148fe79d6eb authored by Martin v. Löwis on 08 April 2010, 17:38:32 UTC, committed by Martin v. Löwis on 08 April 2010, 17:38:32 UTC
1 parent 1b287c7
Raw File
Tip revision: e84089e3f1000ba1d060931e416dc148fe79d6eb authored by Martin v. Löwis on 08 April 2010, 17:38:32 UTC
Issue #8204: Fix test_ttk notebook test by forcing focus.
Tip revision: e84089e
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 *);

#if defined(MS_WINDOWS) || defined(PYOS_OS2)
#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