fxlibc/src/libc/ctype/isupper.c

8 lines
90 B
C

#include <ctype.h>
#undef isupper
int isupper(int c)
{
return (c >= 'A' && c <= 'Z');
}