f09d88c57c34a7ae22d57d761463ad506298002d
[musl] / isupper.c
1 #include <ctype.h>
2 #undef isupper
3
4 int isupper(int c)
5 {
6         return (unsigned)c-'A' < 26;
7 }