mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
19 lines
301 B
C
19 lines
301 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int CDECL _wcsicmp(const wchar_t* cs,const wchar_t * ct)
|
|
{
|
|
while (towlower(*cs) == towlower(*ct))
|
|
{
|
|
if (*cs == 0)
|
|
return 0;
|
|
cs++;
|
|
ct++;
|
|
}
|
|
return towlower(*cs) - towlower(*ct);
|
|
}
|