1 #define _CRT_WCTYPE_NOINLINE 2 #include <ctype.h> 3 4 int __cdecl iswblank (wint_t _C) 5 { 6 return (iswctype(_C, _BLANK) || _C == '\t'); 7 }