ToLower

Converts the given character to its lowercase equivalent. This function is locale independent. It only converts uppercase characters in the standard 7-bit ASCII range. This is a feature, not a limitation.

Synopsis

Declared in <util/strencodings.h>

constexpr
char
ToLower(char c);

Return Value

the lowercase equivalent of c; or the argument if no conversion is possible.

Parameters

NameDescription
c [in]the character to convert to lowercase.