ReactOS 0.4.15-dev-7958-gcd0bb1a
iswctype.c File Reference
#include <string.h>
Include dependency graph for iswctype.c:

Go to the source code of this file.

Functions

int __cdecl iswctype (wint_t wc, wctype_t wctypeFlags)
 

Variables

const unsigned short wine_wctype_table []
 

Function Documentation

◆ iswctype()

int __cdecl iswctype ( wint_t  wc,
wctype_t  wctypeFlags 
)

Definition at line 8 of file iswctype.c.

9{
10 return (wine_wctype_table[wine_wctype_table[wc >> 8] + (wc & 0xff)] & wctypeFlags);
11}
const unsigned short wine_wctype_table[]
Definition: wctype.c:6

Referenced by is_wctype().

Variable Documentation

◆ wine_wctype_table

const unsigned short wine_wctype_table[]
extern

Definition at line 6 of file wctype.c.

Referenced by iswctype().