iswalpha method

bool iswalpha(
  1. int wc
)

Checks if the wide character is alphabetic.

Implementation

bool iswalpha(int wc) {
  return (wc >= 65 && wc <= 90) || (wc >= 97 && wc <= 122);
}