[#BB2473EDDB14F803374CD9B0CF692678FF54F8E0]
Return c converted to lowercase
constexpr char to_lower(char c) noexcept;
This function returns the character, converting it to lowercase if it is uppercase. The function is defined only for low-ASCII characters.
assert( to_lower( 'A' ) == 'a' );
Throws nothing.