tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
wmemset.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CWCHAR_WMEMSET_HPP
4#define TETL_CWCHAR_WMEMSET_HPP
5
8
9namespace etl {
10
18constexpr auto wmemset(wchar_t* dest, wchar_t ch, etl::size_t count) noexcept -> wchar_t*
19{
20 return etl::detail::memset(dest, ch, count);
21}
22} // namespace etl
23
24#endif // TETL_CWCHAR_WMEMSET_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
Definition adjacent_find.hpp:8
constexpr auto wmemset(wchar_t *dest, wchar_t ch, etl::size_t count) noexcept -> wchar_t *
Copies the wide character ch into each of the first count wide characters of the wide character array...
Definition wmemset.hpp:18
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