1#include <ctype.h>
2#undef islower
3
4int islower(int c) {
5    return (unsigned)c - 'a' < 26;
6}
7