blob: 6dff4bd07af008980f3a893227bb19b5ec3c91a2 [file] [log] [blame]
#include <ctype.h>
#undef isupper
int isupper(int c) {
return (unsigned)c - 'A' < 26;
}