Git Browser for ODROID
Code Review
Sign In
git.odroid.com
/
yocto
/
rtos_sdk
/
libc
/
refs/heads/odroidc5-v2023.01
/
.
/
aml
/
aml_isdigit.c
blob: 99fd69ac8b3bd6b85c7d80546901930e5bd3228d [
file
] [
log
] [
blame
] [
edit
]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include
"aml_isdigit.h"
int
isdigit
(
int
c
)
{
return
c
>=
'0'
&&
c
<=
'9'
;
}