iswblank method

bool iswblank(
  1. int wc
)

Checks if the wide character is a blank character (space or tab).

Implementation

bool iswblank(int wc) {
  return wc == 32 || wc == 9;
}