mirror of
https://github.com/opentx/opentx.git
synced 2025-07-14 11:59:50 +03:00
parent
76a21f9160
commit
196da35c6e
3 changed files with 14 additions and 8 deletions
|
@ -44,6 +44,15 @@ char zchar2char(int8_t idx)
|
|||
return ' ';
|
||||
}
|
||||
|
||||
char char2lower(char c)
|
||||
{
|
||||
if(c >= 'A' && c <= 'Z'){
|
||||
return c+32;
|
||||
}
|
||||
else
|
||||
return c;
|
||||
}
|
||||
|
||||
int8_t char2zchar(char c)
|
||||
{
|
||||
if (c == '_') return 37;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue