Initial Commit
[libctiny.git] / stricmp.cc
bloba1f87c0faebc063eec466efabb13a1ae4aca75b5
1 //==========================================
2 // LIBCTINY - Matt Pietrek 2001
3 // MSDN Magazine, January 2001
4 //==========================================
5 #include "libctiny.h"
6 #include <windows.h>
7 #include <string.h>
9 extern "C" int __cdecl _strcmpi(const char *s1, const char *s2) {
10 return lstrcmpi( s1, s2 );
13 extern "C" int __cdecl _stricmp(const char *s1, const char *s2) {
14 return lstrcmpi( s1, s2 );