4#ifndef TETL_CWCHAR_WMEMMOVE_HPP
5#define TETL_CWCHAR_WMEMMOVE_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_strings/cstr.hpp>
24constexpr auto wmemmove(
wchar_t* dest,
wchar_t const* src,
etl::size_t count)
noexcept ->
wchar_t*
27 return __builtin_wmemmove(dest, src, count);
29 return etl::detail::memmove<
wchar_t, etl::size_t>(dest, src, count);
Definition adjacent_find.hpp:9
constexpr auto wmemmove(wchar_t *dest, wchar_t const *src, etl::size_t count) noexcept -> wchar_t *
Copies exactly count successive wide characters from the wide character array pointed to by src to th...
Definition wmemmove.hpp:24