musl-tcc/src/ctype/isupper.c

15 lines
185 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <ctype.h>
#undef isupper
int isupper(int c)
{
return (unsigned)c-'A' < 26;
}
int __isupper_l(int c, locale_t l)
{
return isupper(c);
}
weak_alias(__isupper_l, isupper_l);