syslog: revert LOG_FAC/LOG_FACMASK changes
[musl.git] / src / ctype / isupper.c
blobbfd15acdbe5291551a557d1a94980ae99e6e1024
1 #include <ctype.h>
2 #undef isupper
4 int isupper(int c)
6 return (unsigned)c-'A' < 26;
9 int __isupper_l(int c, locale_t l)
11 return isupper(c);
14 weak_alias(__isupper_l, isupper_l);