Staging
v0.8.1
https://github.com/python/cpython
Revision 8e444f089f8a1a60c00072d2d57c45d16d4c4813 authored by Benjamin Peterson on 30 November 2008, 22:01:37 UTC, committed by Benjamin Peterson on 30 November 2008, 22:01:37 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67458 | benjamin.peterson | 2008-11-30 15:46:16 -0600 (Sun, 30 Nov 2008) | 1 line

  fix pyspecific extensions that were broken by Sphinx's grand renaming
........
1 parent 7c3f870
Raw File
Tip revision: 8e444f089f8a1a60c00072d2d57c45d16d4c4813 authored by Benjamin Peterson on 30 November 2008, 22:01:37 UTC
Merged revisions 67458 via svnmerge from
Tip revision: 8e444f0
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