ReactOS 0.4.16-dev-2110-ge3521eb
isblank.c
Go to the documentation of this file.
1#define __NO_CTYPE_LINES
2#include <ctype.h>
3
4int __cdecl isblank (int _C)
5{
6 return (_isctype(_C, _BLANK) || _C == '\t');
7}
int CDECL _isctype(int c, int type)
Definition: ctype.c:198
#define __cdecl
Definition: corecrt.h:121
#define _BLANK
#define isblank(x)
Definition: trio.c:93