4#ifndef TETL_CWCHAR_WMEMCPY_HPP
5#define TETL_CWCHAR_WMEMCPY_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_strings/cstr.hpp>
18constexpr auto wmemcpy(
wchar_t* dest,
wchar_t const* src,
etl::size_t count)
noexcept ->
wchar_t*
21 return __builtin_wmemcpy(dest, src, count);
26 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:18