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