tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
strcat.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CSTRING_STRCAT_HPP
4#define TETL_CSTRING_STRCAT_HPP
5
8
9namespace etl {
10
21constexpr auto strcat(char* dest, char const* src) noexcept -> char*
22{
23 return etl::detail::strcat<char, etl::size_t>(dest, src);
24}
25
26} // namespace etl
27
28#endif // TETL_CSTRING_STRCAT_HPP
constexpr auto strcat(char *dest, char const *src) noexcept -> char *
Appends a copy of the character string pointed to by src to the end of the character string pointed t...
Definition strcat.hpp:21
Definition adjacent_find.hpp:8