blob: 7a749f8eb79f3befb5fd83c3fe55bc307ac4e684 [file] [log] [blame]
#include <wctype.h>
int iswgraph(wint_t wc) {
/* ISO C defines this function as: */
return !iswspace(wc) && iswprint(wc);
}