emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernels
[oweals/musl.git] / src / ctype / iswgraph.c
1 #include <wctype.h>
2
3 int iswgraph(wint_t wc)
4 {
5         /* ISO C defines this function as: */
6         return !iswspace(wc) && iswprint(wc);
7 }