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