4#ifndef TETL_CWCHAR_WCSCPY_HPP
5#define TETL_CWCHAR_WCSCPY_HPP
7#include <etl/_contracts/check.hpp>
8#include <etl/_cstddef/size_t.hpp>
9#include <etl/_strings/cstr.hpp>
20constexpr auto wcscpy(
wchar_t* dest,
wchar_t const* src) ->
wchar_t*
22 TETL_PRECONDITION(dest !=
nullptr);
23 TETL_PRECONDITION(src !=
nullptr);
24 return etl::detail::strcpy(dest, src);
Definition adjacent_find.hpp:9
constexpr auto wcscpy(wchar_t *dest, wchar_t const *src) -> wchar_t *
Copies the wide string pointed to by src (including the terminating null wide character) to wide char...
Definition wcscpy.hpp:20