tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
cwctype.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2021 Tobias Hienzsch
3
4#ifndef TETL_CWCTYPE_HPP
5#define TETL_CWCTYPE_HPP
6
7/// \defgroup cwctype cwctype
8/// Functions to determine the category of wide characters
9/// \ingroup strings-library
10
11#include <etl/_config/all.hpp>
12
13#include <etl/_cwctype/iswalnum.hpp>
14#include <etl/_cwctype/iswalpha.hpp>
15#include <etl/_cwctype/iswblank.hpp>
16#include <etl/_cwctype/iswcntrl.hpp>
17#include <etl/_cwctype/iswdigit.hpp>
18#include <etl/_cwctype/iswgraph.hpp>
19#include <etl/_cwctype/iswlower.hpp>
20#include <etl/_cwctype/iswprint.hpp>
21#include <etl/_cwctype/iswpunct.hpp>
22#include <etl/_cwctype/iswspace.hpp>
23#include <etl/_cwctype/iswupper.hpp>
24#include <etl/_cwctype/iswxdigit.hpp>
25#include <etl/_cwctype/towlower.hpp>
26#include <etl/_cwctype/towupper.hpp>
27
28#endif // TETL_CWCTYPE_HPP