Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
ctype
/
isxdigit.c
blob: 29ba9a3f891db8e2f196285e87301f82056654ed [
file
] [
log
] [
blame
]
#include
<ctype.h>
#include
"libc.h"
int
isxdigit
(
int
c
)
{
return
isdigit
(
c
)
||
((
unsigned
)
c
|
32
)
-
'a'
<
6
;
}
int
__isxdigit_l
(
int
c
,
locale_t
l
)
{
return
isxdigit
(
c
);
}
weak_alias
(
__isxdigit_l
,
isxdigit_l
);