fxlibc/src/libc/ctype/isalpha.c

9 lines
107 B
C

#include <ctype.h>
#undef isalpha
int isalpha(int c)
{
c = c | 0x20;
return (c >= 'a') && (c <= 'z');
}