zig/lib/libc/mingw/misc/isblank.c

8 lines
125 B
C
Raw Normal View History

#define __NO_CTYPE_LINES
#include <ctype.h>
int __cdecl isblank (int _C)
{
return (_isctype(_C, _BLANK) || _C == '\t');
}