@brief Convert character to lowercase @param c The character to convert @return The lowercase version of c (if c is uppercase), otherwise c unchanged
| 30 | /// @param c The character to convert |
| 31 | /// @return The lowercase version of c (if c is uppercase), otherwise c unchanged |
| 32 | inline char tolower(char c) FL_NOEXCEPT { |
| 33 | return (c >= 'A' && c <= 'Z') ? (c + ('a' - 'A')) : c; |
| 34 | } |
| 35 | |
| 36 | /// @brief Convert character to uppercase |
| 37 | /// @param c The character to convert |
no outgoing calls
no test coverage detected