ReactOS 0.4.16-dev-2224-g3637fd8
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
int __cdecl isblank(int _C)
Definition: isblank.c:4