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