iswgraph function — Determines whether a wide character is graphic
int iswgraph(wint_t wc)
The iswgraph
function
returns true (nonzero) if iswprint(wc)
is true and iswspace(wc)
is false. Note that iswgraph
is slightly different from
isgraph
in that it returns true
for whitespace characters other than '
'.