#include #include int main(void) { for (char c = 'a'; c != 'z'; ++c) { assert(isupper(toupper(c))); } return 0; }