fdc978535b1e7ab0fdc5e0c7f3d9c6befd8c855c
[musl] / 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 }