Files
reactos/lib/3rdparty/libwine/string.c
T
Amine Khaldi 60eea2d779 * Branch for the 0.3.14 release.
svn path=/branches/ros-branch-0_3_14/; revision=55011
2012-01-19 15:13:24 +00:00

23 lines
466 B
C

#include <ctype.h>
#include "wine/config.h"
#include "wine/port.h"
#ifndef HAVE_STRCASECMP
#ifdef _stricmp
# undef _stricmp
#endif
int _stricmp( const char *str1, const char *str2 )
{
const unsigned char *ustr1 = (const unsigned char *)str1;
const unsigned char *ustr2 = (const unsigned char *)str2;
while (*ustr1 && toupper(*ustr1) == toupper(*ustr2)) {
ustr1++;
ustr2++;
}
return toupper(*ustr1) - toupper(*ustr2);
}
#endif