ciabatta/test/test.c

10 lines
147 B
C
Raw Normal View History

2022-06-02 13:08:59 +00:00
#include <assert.h>
#include <ctype.h>
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;
}