1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-08 06:07:51 +00:00
reactos/sdk/lib/crt/misc/iswblank.c

8 lines
135 B
C
Raw Normal View History

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