ReactOS
0.4.16-dev-1983-g1a17364
iswctype_nt.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS NT CRT library
3
* LICENSE: MIT (https://spdx.org/licenses/MIT)
4
* PURPOSE: Implementation of iswctype
5
* COPYRIGHT: Copyright 2025 Timo Kreuzer <timo.kreuzer@reactos.org>
6
*/
7
8
#include <ctype.h>
9
10
extern
const
unsigned
short
_wctype
[];
11
12
_Check_return_
13
int
14
__cdecl
15
iswctype
(
wint_t
_C,
wctype_t
_Type)
16
{
17
if
(_C <= 0xFF)
18
return
(
_wctype
[_C + 1] & _Type);
19
20
return
0;
21
}
wint_t
int wint_t
Definition:
_apple.h:38
__cdecl
#define __cdecl
Definition:
accygwin.h:79
_wctype
const unsigned short _wctype[]
Definition:
ctype.c:296
iswctype
_Check_return_ int __cdecl iswctype(wint_t _C, wctype_t _Type)
Definition:
iswctype_nt.c:15
_Check_return_
#define _Check_return_
Definition:
no_sal2.h:60
wctype_t
unsigned short wctype_t
Definition:
corecrt.h:617
sdk
lib
crt
string
iswctype_nt.c
Generated on Sat Dec 13 2025 06:16:25 for ReactOS by
1.9.6