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