tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
cstring.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_CSTRING_HPP
5#define TETL_CSTRING_HPP
6
7/// \defgroup cstring cstring
8/// Various narrow character string handling functions
9/// \ingroup strings-library
10
11#include <etl/_config/all.hpp>
12
13#include <etl/_cstring/memchr.hpp>
14#include <etl/_cstring/memcmp.hpp>
15#include <etl/_cstring/memcpy.hpp>
16#include <etl/_cstring/memmove.hpp>
17#include <etl/_cstring/memset.hpp>
18#include <etl/_cstring/strcat.hpp>
19#include <etl/_cstring/strchr.hpp>
20#include <etl/_cstring/strcmp.hpp>
21#include <etl/_cstring/strcpy.hpp>
22#include <etl/_cstring/strcspn.hpp>
23#include <etl/_cstring/strlen.hpp>
24#include <etl/_cstring/strncat.hpp>
25#include <etl/_cstring/strncmp.hpp>
26#include <etl/_cstring/strncpy.hpp>
27#include <etl/_cstring/strpbrk.hpp>
28#include <etl/_cstring/strrchr.hpp>
29#include <etl/_cstring/strspn.hpp>
30#include <etl/_cstring/strstr.hpp>
31
32#endif // TETL_CSTRING_HPP