musl-tcc/src/ctype/isgraph.c
2022-03-20 16:48:53 +08:00

15 lines
188 B
C

#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);