blob: 5da3e00ee1d776ee258bba40e98d21d7d1b0a919 [file] [log] [blame]
#include <ctype.h>
#undef islower
int islower(int c) {
return (unsigned)c - 'a' < 26;
}