Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
third_party
/
musl
/
src
/
ctype
/
isgraph.c
blob: a0aae08aabe69ae9eb70d832be044838d954cb7e [
file
] [
log
] [
blame
]
#include
<ctype.h>
#include
"libc.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
);