zig/libc/mingw/misc/iswblank.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
133 B
C

#define _CRT_WCTYPE_NOINLINE
#include <ctype.h>
int __cdecl iswblank (wint_t _C)
{
return (iswctype(_C, _BLANK) || _C == '\t');
}