Sign in
mojo
/
mojo
/
01e4875c7dd37b5d7e7b43bb7c4cacdbcd5d33b1
/
.
/
fusl
/
src
/
ctype
/
isalpha.c
blob: b69aa8248bf751f623e193c46b9c72f23b7a4e06 [
file
]
#include
<ctype.h>
#include
"libc.h"
#undef
isalpha
int
isalpha
(
int
c
)
{
return
((
unsigned
)
c
|
32
)
-
'a'
<
26
;
}
int
__isalpha_l
(
int
c
,
locale_t
l
)
{
return
isalpha
(
c
);
}
weak_alias
(
__isalpha_l
,
isalpha_l
);