OSDN Git Service

More rationalization of CRT_INLINE function implementations.
[mingw/mingw-org-wsl.git] / mingwrt / mingwex / isblank.c
1 #define __NO_CTYPE_LINES
2 #include <ctype.h>
3
4 int __cdecl isblank (int c)
5 {return (_isctype(c, _BLANK) || c == '\t');}