blob: 646e46f36c889af15650d54068ac96e9f9505812 [file] [log] [blame]
#include <ctype.h>
#undef isalpha
int isalpha(int c) {
return ((unsigned)c | 32) - 'a' < 26;
}