fix typo in wordexp.h (note that the function is still unimplemented)
[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 }