zig/libc/mingw/misc/isblank.c
Andrew Kelley 2bb93784c6
mingw: build and link mingwex.lib
zig can now cross compile hello.c targeting windows
2019-07-10 17:41:34 -04:00

8 lines
125 B
C

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