Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
ctype
/
isgraph.c
blob: 292d1983ec5b717e66e2db62afacb078a267fbbf [
file
] [
log
] [
blame
]
#include
<ctype.h>
#undef
isgraph
int
isgraph
(
int
c
)
{
return
(
unsigned
)
c
-
0x21
<
0x5e
;
}
int
__isgraph_l
(
int
c
,
locale_t
l
)
{
return
isgraph
(
c
);
}
weak_alias
(
__isgraph_l
,
isgraph_l
);