wcsncat

From cppreference.com
< c‎ | string‎ | wide
Defined in header <wchar.h>
wchar_t *wcsncat( wchar_t *dest, const wchar_t *src, size_t count );

Appends a wide string pointed to by src to a wide string pointed to by dest. At most count wide characters are copied. The resulting wide string is null-terminated. If the strings overlap, the behavior is undefined.

Contents

[edit] Parameters

dest - pointer to the null-terminated wide string to append to
src - pointer to the null-terminated wide string to copy from
count - maximum number of wide characters to copy

[edit] Return value

dest

[edit] Example

[edit] See also

appends a copy of one wide string to another
(function)
copies one wide string to another
(function)
C++ documentation for wcsncat