tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
cstdint.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_CSTDINT_HPP
5#define TETL_CSTDINT_HPP
6
7/// \defgroup cstdint cstdint
8/// Fixed-width integer types and limits of other types
9/// \ingroup limits-library
10
11#include <etl/_config/all.hpp>
12
13#include <etl/_cstdint/int_fast_t.hpp>
14#include <etl/_cstdint/int_least_t.hpp>
15#include <etl/_cstdint/int_t.hpp>
16#include <etl/_cstdint/intmax_t.hpp>
17#include <etl/_cstdint/intptr_t.hpp>
18#include <etl/_cstdint/uint_fast_t.hpp>
19#include <etl/_cstdint/uint_least_t.hpp>
20#include <etl/_cstdint/uint_t.hpp>
21#include <etl/_cstdint/uintmax_t.hpp>
22#include <etl/_cstdint/uintptr_t.hpp>
23
24// Non-standard extensions
25#include <etl/_cstdint/uint128.hpp>
26
27#endif // TETL_CSTDINT_HPP