ciabatta/test/test.c

14 lines
261 B
C
Raw Normal View History

2022-06-02 13:08:59 +00:00
#include <assert.h>
#include <ctype.h>
int main(int argc, char** argv) {
/*for (int i = 0; i < argv; i++) {
printf("[%d] = %s\n", argv[i]);
}*/
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;
}