1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-13 14:20:31 +00:00
reactos/sdk/lib/crt/misc/iswblank.c
2024-10-06 10:47:11 +03:00

7 lines
135 B
C

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