ReactOS
0.4.15-dev-5618-g8866b9d
Functions
wcsicmp.c File Reference
#include <precomp.h>
Include dependency graph for wcsicmp.c:
Go to the source code of this file.
Functions
int
CDECL
_wcsicmp
(
const
wchar_t
*
cs
,
const
wchar_t
*ct)
Function Documentation
◆
_wcsicmp()
int
CDECL
_wcsicmp
(
const
wchar_t
*
cs
,
const
wchar_t
*
ct
)
Definition at line
8
of file
wcsicmp.c
.
9
{
10
while
(
towlower
(*
cs
) ==
towlower
(*ct))
11
{
12
if
(*
cs
== 0)
13
return
0;
14
cs
++;
15
ct++;
16
}
17
return
towlower
(*
cs
) -
towlower
(*ct);
18
}
cs
uint32_t cs
Definition:
isohybrid.c:75
towlower
#define towlower(c)
Definition:
wctype.h:97
sdk
lib
crt
wstring
wcsicmp.c
Generated on Tue Jan 31 2023 06:15:14 for ReactOS by
1.8.15