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