tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
strncat.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CSTRING_STRNCAT_HPP
4#define TETL_CSTRING_STRNCAT_HPP
5
8
9namespace etl {
10
21constexpr auto strncat(char* dest, char const* src, etl::size_t const count) -> char*
22{
23 return etl::detail::strncat<char, etl::size_t>(dest, src, count);
24}
25
26} // namespace etl
27
28#endif // TETL_CSTRING_STRNCAT_HPP
constexpr auto count(InputIt first, InputIt last, T const &value) -> typename iterator_traits< InputIt >::difference_type
Returns the number of elements in the range [first, last) satisfying specific criteria....
Definition count.hpp:21
constexpr auto strncat(char *dest, char const *src, etl::size_t const count) -> char *
Appends a byte string pointed to by src to a byte string pointed to by dest. At most count characters...
Definition strncat.hpp:21
Definition adjacent_find.hpp:8
TETL_BUILTIN_SIZET size_t
etl::size_t is the unsigned integer type of the result of the sizeof operator.
Definition size_t.hpp:14