ReactOS 0.4.15-dev-7958-gcd0bb1a
isblank.c File Reference
#include <ctype.h>
Include dependency graph for isblank.c:

Go to the source code of this file.

Macros

#define __NO_CTYPE_LINES
 

Functions

int __cdecl isblank (int _C)
 

Macro Definition Documentation

◆ __NO_CTYPE_LINES

#define __NO_CTYPE_LINES

Definition at line 1 of file isblank.c.

Function Documentation

◆ isblank()

int __cdecl isblank ( int  _C)

Definition at line 4 of file isblank.c.

5{
6 return (_isctype(_C, _BLANK) || _C == '\t');
7}
#define _BLANK
Definition: ctype.h:72
_Check_return_ _CRTIMP int __cdecl _isctype(_In_ int _C, _In_ int _Type)