iswgraph method

bool iswgraph(
  1. int wc
)

Checks if the wide character has a graphical representation.

Implementation

bool iswgraph(int wc) {
  return wc >= 33 && wc <= 126;
}