ReactOS 0.4.15-dev-7918-g2a2556c
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}
#define cs
Definition: i386-dis.c:442
#define towlower(c)
Definition: wctype.h:97