blob: 9588025f4bbe99fd77a30b26868fe097ebefa093 [file] [log] [blame]
Kai Tietz518dd332007-08-10 09:54:15 +00001#include <string.h>
2#undef wcscmpi
3
4int
5wcscmpi (const wchar_t * ws1,const wchar_t * ws2)
6{
7 return _wcsicmp (ws1,ws2);
8}