apply hidden visibility to stdio internals
[musl.git] / src / ctype / isalpha.c
blobf155d3aa97048880a109a8838b79be1e946e2dc2
1 #include <ctype.h>
2 #include "libc.h"
3 #undef isalpha
5 int isalpha(int c)
7 return ((unsigned)c|32)-'a' < 26;
10 int __isalpha_l(int c, locale_t l)
12 return isalpha(c);
15 weak_alias(__isalpha_l, isalpha_l);