1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-19 17:14:32 +00:00
reactos/sdk/lib/crt/misc/isblank.c

7 lines
126 B
C
Raw Normal View History

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