iswspace method

bool iswspace(
  1. int wc
)

Checks if the wide character is a white-space character.

Implementation

bool iswspace(int wc) {
  return wc == 32 || (wc >= 9 && wc <= 13);
}