2022-06-02 13:08:59 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
2022-06-02 23:36:04 +00:00
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
for (char c = 'a'; c != 'z'; ++c) {
|
|
|
|
assert(isupper(toupper(c)));
|
2022-06-02 13:08:59 +00:00
|
|
|
}
|
2022-06-02 05:18:26 +00:00
|
|
|
return 0;
|
2022-06-02 23:36:04 +00:00
|
|
|
}
|