iconv: fix missing bounds checking for shift_jis decoding
[musl.git] / src / ctype / islower.c
blobc3fa74c4cbd11896a370fe9565d0e4d1af16bf7b
1 #include <ctype.h>
2 #undef islower
4 int islower(int c)
6 return (unsigned)c-'a' < 26;
9 int __islower_l(int c, locale_t l)
11 return islower(c);
14 weak_alias(__islower_l, islower_l);