Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
ctype
/
isalpha.c
blob: b69aa8248bf751f623e193c46b9c72f23b7a4e06 [
file
] [
log
] [
blame
]
#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
);