Sign in
mingw
/
mingw-w64
/
fe6f05b5bc44050d2350fed696278e02c0e4d78a
/
.
/
mingw-w64-crt
/
misc
/
isblank.c
blob: ca530cef1f0389700fc9221fc884c35ced04cae0 [
file
]
#define
__NO_CTYPE_LINES
#include
<ctype.h>
int
_cdecl isblank
(
int
_C
)
{
return
(
_isctype
(
_C
,
_BLANK
)
||
_C
==
'\t'
);
}