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