Sign in
coral
/
optee-os-mtk
/
d98812247c6a5ee48f89bb6aa6df565c9d305066
/
.
/
lib
/
libutils
/
isoc
/
isdigit.c
blob: 9bb6694e563a656d8e2c49620d8fadc1b3413591 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2018, Linaro Limited
*/
#include
<ctype.h>
int
isdigit
(
int
c
)
{
if
(
c
>=
'0'
&&
c
<=
'9'
)
return
1
;
return
0
;
}