musl/src/ctype/isupper.c

16 lines
203 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <ctype.h>
#include "libc.h"
2011-02-12 00:22:29 -05:00
#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);