uglify headers for the sake of junk that compiles with gcc -std=c89/-ansi
[musl] / src / ctype / isupper.c
1 #include <ctype.h>
2 #undef isupper
3
4 int isupper(int c)
5 {
6         return (unsigned)c-'A' < 26;
7 }