Return c converted to lowercase
char
to_lower(
char c) noexcept;
Declared in file <boost/url/grammar/ci_string.hpp> at line 53
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.