std::wcsncpy (3) - Linux Manuals
std::wcsncpy: std::wcsncpy
NAME
Synopsis
Defined in header <cwchar>
wchar_t *wcsncpy( wchar_t *dest, const wchar_t *src, std::size_t count );
Copies at most count characters of the wide string pointed to by src (including the terminating null wide character) to wide character array pointed to by dest.
If count is reached before the entire string src was copied, the resulting wide character array is not null-terminated.
If, after copying the terminating null wide character from src, count is not reached, additional null wide characters are written to dest until the total of count characters have been written.
If the strings overlap, the behavior is undefined.
Parameters
dest - pointer to the wide character array to copy to
src - pointer to the wide string to copy from
count - maximum number of wide characters to copy
Return value
dest
Notes
In typical usage, count is the size of the destination array.
Example
// Run this code
Output:
See also
wcscpy (function)
wmemcpy (function)
strncpy (function)