iswupper method

bool iswupper(
  1. int wc
)

Checks if the wide character is an uppercase letter.

Implementation

bool iswupper(int wc) {
  return wc >= 65 && wc <= 90;
}