musl/src/locale/isgraph_l.c
2011-02-12 00:22:29 -05:00

6 lines
77 B
C

#include <ctype.h>
int isgraph_l(int c, locale_t l)
{
return isgraph(c);
}