wmemcpy, wmemcpy_s
From cppreference.com
| Defined in header <wchar.h>
|
||
| (1) | ||
| wchar_t* wmemcpy( wchar_t* dest, const wchar_t* src, size_t count ); |
(since C95) (until C99) |
|
| wchar_t *wmemcpy(wchar_t *restrict dest, const wchar_t *restrict src, size_t count ); |
(since C99) | |
| errno_t wmemcpy_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src, rsize_t count ); |
(2) | (since C11) |
1) Copies exactly
count successive wide characters from the wide character array pointed to by src to the wide character array pointed to by dest. If the objects overlap, the behavior is undefined. If count is zero, the function does nothing.2) Same as (1), except that the following errors are detected at runtime and call the currently installed