Sign in
third-party-mirror
/
mingw-w64
/
3ddfe8ff2828f2adc0603774c74ac68d5f7c1a13
/
.
/
mingw-w64-crt
/
misc
/
iswblank.c
blob: bc696a390d972c40bdcb86c77c3b7e0458ba9106 [
file
] [
log
] [
blame
]
#define
_CRT_WCTYPE_NOINLINE
#include
<ctype.h>
int
_cdecl iswblank
(
wint_t
_C
)
{
return
(
iswctype
(
_C
,
_BLANK
)
||
_C
==
'\t'
);
}