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