ciabatta/test/test.c

10 lines
150 B
C
Raw Normal View History

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