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
]
xiaohu.huang
1fd6f11
2022-05-24 11:02:05 +0800
[
diff
] [
blame
]
1
/*
2
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3
*
4
* SPDX-License-Identifier: MIT
5
*/
6
7
#include
"aml_tolower.h"
8
9
int
tolower
(
int
c
)
10
{
11
return
c
>=
'A'
&&
c
<=
'Z'
?
c
+
'a'
-
'A'
:
c
;
12
}