Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / sdk / lib / 3rdparty / libwine / string.c
diff --git a/reactos/sdk/lib/3rdparty/libwine/string.c b/reactos/sdk/lib/3rdparty/libwine/string.c
deleted file mode 100644 (file)
index 43ee94f..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#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