Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
ctype
/
isdigit.c
blob: 4d8a103e612e27d2d394d767d9e20c13aea3435c [
file
]
#include
<ctype.h>
#include
"libc.h"
#undef
isdigit
int
isdigit
(
int
c
)
{
return
(
unsigned
)
c
-
'0'
<
10
;
}
int
__isdigit_l
(
int
c
,
locale_t
l
)
{
return
isdigit
(
c
);
}
weak_alias
(
__isdigit_l
,
isdigit_l
);