4#ifndef TETL_CWCHAR_WMEMMOVE_HPP
5#define TETL_CWCHAR_WMEMMOVE_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_cstddef/size_t.hpp>
10#include <etl/_strings/cstr.hpp>
26constexpr auto wmemmove(
wchar_t* dest,
wchar_t const* src,
etl::size_t count)
noexcept ->
wchar_t*
28#if __has_builtin(__builtin_wmemmove)
29 return __builtin_wmemmove(dest, src, count);
31 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:26