4#ifndef TETL_CWCHAR_WMEMCPY_HPP
5#define TETL_CWCHAR_WMEMCPY_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_cstddef/size_t.hpp>
10#include <etl/_strings/cstr.hpp>
20constexpr auto wmemcpy(
wchar_t* dest,
wchar_t const* src,
etl::size_t count)
noexcept ->
wchar_t*
22#if __has_builtin(__builtin_wmemcpy)
23 return __builtin_wmemcpy(dest, src, count);
28 return etl::detail::strncpy(dest, src, count);
Definition adjacent_find.hpp:9
constexpr auto wmemcpy(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 wmemcpy.hpp:20