nativity/lib/libc/mingw/misc/iswblank.c
David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06: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');
}