tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
cctype.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_CCTYPE_HPP
5#define TETL_CCTYPE_HPP
6
7/// \defgroup cctype cctype
8/// Functions to determine the category of narrow characters
9/// \ingroup strings-library
10/// \code{.cpp}
11/// #include <etl/cctype.hpp>
12/// \endcode
13
14#include <etl/_config/all.hpp>
15
16#include <etl/_cctype/isalnum.hpp>
17#include <etl/_cctype/isalpha.hpp>
18#include <etl/_cctype/isblank.hpp>
19#include <etl/_cctype/iscntrl.hpp>
20#include <etl/_cctype/isdigit.hpp>
21#include <etl/_cctype/isgraph.hpp>
22#include <etl/_cctype/islower.hpp>
23#include <etl/_cctype/isprint.hpp>
24#include <etl/_cctype/ispunct.hpp>
25#include <etl/_cctype/isspace.hpp>
26#include <etl/_cctype/isupper.hpp>
27#include <etl/_cctype/isxdigit.hpp>
28#include <etl/_cctype/tolower.hpp>
29#include <etl/_cctype/toupper.hpp>
30
31#endif // TETL_CCTYPE_HPP