mirror of
https://github.com/opentx/opentx.git
synced 2025-07-14 20:10:08 +03:00
Cosmetics
This commit is contained in:
parent
196da35c6e
commit
1f1ccf277c
1 changed files with 1 additions and 5 deletions
|
@ -46,11 +46,7 @@ char zchar2char(int8_t idx)
|
|||
|
||||
char char2lower(char c)
|
||||
{
|
||||
if(c >= 'A' && c <= 'Z'){
|
||||
return c+32;
|
||||
}
|
||||
else
|
||||
return c;
|
||||
return (c >= 'A' && c <= 'Z') ? c + 32 : c;
|
||||
}
|
||||
|
||||
int8_t char2zchar(char c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue