musl/src/locale/isalpha_l.c
2011-02-12 00:22:29 -05:00

7 lines
77 B
C

#include <ctype.h>
int isalpha_l(int c, locale_t l)
{
return isalpha(c);
}