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

◆ toupper()

char fl::toupper ( char c)
inline

Convert character to uppercase.

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

Definition at line 39 of file cctype.h.

39 {
40 return (c >= 'a' && c <= 'z') ? (c - ('a' - 'A')) : c;
41}

References FL_NOEXCEPT.