Sprinkle cdecl declarations liberally all around to make a bunch of the base componen...
[reactos.git] / reactos / lib / sdk / crt / string / iswctype.c
1 #include <string.h>
2
3 extern const unsigned short wine_wctype_table[];
4
5 /*
6 * @implemented
7 */
8 int __cdecl iswctype(wint_t wc, wctype_t wctypeFlags)
9 {
10 return (wine_wctype_table[wine_wctype_table[wc >> 8] + (wc & 0xff)] & wctypeFlags);
11 }
12