FastLED
3.9.15
Loading...
Searching...
No Matches
◆
toupper()
char fl::toupper
(
char
c
)
inline
Convert character to uppercase.
Parameters
c
The 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
.
fl
Generated on Tue Jun 16 2026 00:07:04 for FastLED by
1.13.2