mirror of
git://git.musl-libc.org/musl
synced 2025-03-11 06:07:29 +00:00
7 lines
77 B
C
7 lines
77 B
C
#include <ctype.h>
|
|
|
|
int isalpha_l(int c, locale_t l)
|
|
{
|
|
return isalpha(c);
|
|
}
|