Staging
v0.5.1
https://github.com/python/cpython
Revision 45a276cdd2f9ceff5f89868428963ffa581e6f96 authored by Martin v. Löwis on 19 November 2008, 13:54:01 UTC, committed by Martin v. Löwis on 19 November 2008, 13:54:01 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67283 | martin.v.loewis | 2008-11-19 14:51:44 +0100 (Mi, 19 Nov 2008) | 1 line

  Issue #4289: Remove Cancel button from AdvancedDlg.
........
1 parent 90a79e8
Raw File
Tip revision: 45a276cdd2f9ceff5f89868428963ffa581e6f96 authored by Martin v. Löwis on 19 November 2008, 13:54:01 UTC
Merged revisions 67283 via svnmerge from
Tip revision: 45a276c
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