MCPcopy Create free account
hub / github.com/FastLED/FastLED / tolower

Function tolower

src/fl/stl/cctype.h:32–34  ·  view source on GitHub ↗

@brief Convert character to lowercase @param c The character to convert @return The lowercase version of c (if c is uppercase), otherwise c unchanged

Source from the content-addressed store, hash-verified

30/// @param c The character to convert
31/// @return The lowercase version of c (if c is uppercase), otherwise c unchanged
32inline 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

Callers 3

iequalsFunction · 0.85
toLowerFunction · 0.85
operator()Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected