reactos/lib/sdk/crt/string/iswctype.c
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

13 lines
233 B
C

#include <string.h>
extern const unsigned short wine_wctype_table[];
/*
* @implemented
*/
int iswctype(wint_t wc, wctype_t wctypeFlags)
{
return (wine_wctype_table[wine_wctype_table[wc >> 8] + (wc & 0xff)] & wctypeFlags);
}