isUppercase function

bool isUppercase(
  1. int ascii
)

Implementation

bool isUppercase(int ascii) {
  return ascii >= 65 && ascii <= 90;
}