FastLED 3.9.15
Loading...
Searching...
No Matches

◆ tolower()

char fl::tolower ( char c)
inline

Convert character to lowercase.

Parameters
cThe character to convert
Returns
The lowercase version of c (if c is uppercase), otherwise c unchanged

Definition at line 32 of file cctype.h.

32 {
33 return (c >= 'A' && c <= 'Z') ? (c + ('a' - 'A')) : c;
34}

References FL_NOEXCEPT.

Referenced by fl::BoolConversionVisitor::operator()(), and fl::anonymous_namespace{http_parser.cpp.hpp}::toLower().

+ Here is the caller graph for this function: