Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / wstring / wcsicmp.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrti.h>
3
4
5 int _wcsicmp(const wchar_t* cs,const wchar_t * ct)
6 {
7 while (towlower(*cs) == towlower(*ct))
8 {
9 if (*cs == 0)
10 return 0;
11 cs++;
12 ct++;
13 }
14 return towlower(*cs) - towlower(*ct);
15 }