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