Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
ctype
/
isspace.c
blob: 428813e79856c9092942e26dfd83eb94926c65ea [
file
] [
log
] [
blame
]
#include
<ctype.h>
#undef
isspace
int
isspace
(
int
c
)
{
return
c
==
' '
||
(
unsigned
)
c
-
'\t'
<
5
;
}
int
__isspace_l
(
int
c
,
locale_t
l
)
{
return
isspace
(
c
);
}
weak_alias
(
__isspace_l
,
isspace_l
);