4#ifndef TETL_CCTYPE_TOUPPER_HPP
5#define TETL_CCTYPE_TOUPPER_HPP
7#include <etl/_cctype/islower.hpp>
30 return static_cast<
int>(ch - 32);
32 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:20
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:27
Definition adjacent_find.hpp:9