Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
5b546faa67544af395d6407553762b37e9711157
/
.
/
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
);