1 2 3 4 5 6 7
#include <wctype.h> int iswgraph(wint_t wc) { /* ISO C defines this function as: */ return !iswspace(wc) && iswprint(wc); }