ReactOS 0.4.15-dev-7924-g5949c20
is_wctype.c File Reference
#include <string.h>
Include dependency graph for is_wctype.c:

Go to the source code of this file.

Functions

int iswctype (wint_t wc, wctype_t wctypeFlags)
 
int is_wctype (wint_t wc, wctype_t wctypeFlags)
 

Function Documentation

◆ is_wctype()

int is_wctype ( wint_t  wc,
wctype_t  wctypeFlags 
)

Definition at line 10 of file is_wctype.c.

11{
12 return iswctype(wc, wctypeFlags);
13}
int iswctype(wint_t wc, wctype_t wctypeFlags)
Definition: freeldr.c:99

◆ iswctype()

int iswctype ( wint_t  wc,
wctype_t  wctypeFlags 
)

Definition at line 99 of file freeldr.c.

100{
101 return _isctype((char)wc, wctypeFlags);
102}
_Check_return_ _CRTIMP int __cdecl _isctype(_In_ int _C, _In_ int _Type)

Referenced by _wcstoi64_l(), _wcstoui64_l(), _wtoi64_l(), _wtol(), is_wctype(), iswalnum(), iswalpha(), iswblank(), iswcntrl(), iswdigit(), iswgraph(), iswlower(), iswprint(), iswpunct(), iswspace(), iswupper(), iswxdigit(), rangematch(), towlower(), towupper(), wcstol(), and wcstoul().