Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
ctype
/
isxdigit.c
blob: 0e9152a7b01661b08167eb8169518c8536092051 [
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
);