3#ifndef TETL_CCTYPE_ISPRINT_HPP
4#define TETL_CCTYPE_ISPRINT_HPP
20[[nodiscard]]
constexpr auto isprint(
int ch)
noexcept ->
int
22 return static_cast<int>(
etl::isgraph(ch) != 0 || ch ==
' ');
constexpr auto isgraph(int ch) noexcept -> int
Checks if the given character is graphic (has a graphical representation) as classified by the defaul...
Definition isgraph.hpp:24
constexpr auto isprint(int ch) noexcept -> int
Checks if ch is a printable character as classified by the default C locale.
Definition isprint.hpp:20
Definition adjacent_find.hpp:8