1 #define __NO_CTYPE_LINES 2 #include <ctype.h> 3 4 int __cdecl isblank (int _C) 5 { 6 return (_isctype(_C, _BLANK) || _C == '\t'); 7 } 8