Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
ctype
/
isgraph.c
blob: 9a6bacc20e6da54c59034932c2878bd4bf0c0a30 [
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
);