reactos/reactos/lib/ntdll/string/stricmp.c
Eric Kohl 7e74c066a7 changes to build cmd again
svn path=/trunk/; revision=388
1999-04-15 17:40:56 +00:00

22 lines
429 B
C

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/string.h>
#include <crtdll/ctype.h>
int
_stricmp(const char *s1, const char *s2)
{
while (toupper(*s1) == toupper(*s2))
{
if (*s1 == 0)
return 0;
s1++;
s2++;
}
return toupper(*(unsigned const char *)s1) - toupper(*(unsigned const char *)(s2));
}
int
_strcmpi(const char *s1, const char *s2)
{
return _stricmp(s1,s2);
}