3#ifndef TETL_CCTYPE_TOLOWER_HPP
4#define TETL_CCTYPE_TOLOWER_HPP
26[[nodiscard]]
constexpr auto tolower(
int ch)
noexcept ->
int
29 return static_cast<int>(ch + 32);
31 return static_cast<int>(ch);
constexpr auto isupper(int ch) noexcept -> int
Checks if the given character is classified as a uppercase character according to the default C local...
Definition isupper.hpp:19
constexpr auto tolower(int ch) noexcept -> int
Converts the given character to lowercase according to the character conversion rules defined by the ...
Definition tolower.hpp:26
Definition adjacent_find.hpp:8