generic c version of __set_thread_area for archs where it works
[musl] / src / locale / isprint_l.c
1 #include <ctype.h>
2
3 int isprint_l(int c, locale_t l)
4 {
5         return isprint(c);
6 }