iswlower method

bool iswlower(
  1. int wc
)

Checks if the wide character is a lowercase letter.

Implementation

bool iswlower(int wc) {
  return wc >= 97 && wc <= 122;
}