ReactOS
0.4.16-dev-36-g301675c
wcsicmp.c
Go to the documentation of this file.
1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
3
#include <precomp.h>
4
5
/*
6
* @implemented
7
*/
8
int
CDECL
_wcsicmp
(
const
wchar_t
*
cs
,
const
wchar_t
* ct)
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
}
CDECL
#define CDECL
Definition:
compat.h:29
cs
#define cs
Definition:
i386-dis.c:442
towlower
#define towlower(c)
Definition:
wctype.h:97
_wcsicmp
int CDECL _wcsicmp(const wchar_t *cs, const wchar_t *ct)
Definition:
wcsicmp.c:8
sdk
lib
crt
wstring
wcsicmp.c
Generated on Mon Sep 16 2024 06:13:13 for ReactOS by
1.9.6