Namespaces
Variants
Views
Actions

std::wcsncat

From cppreference.com
< cpp‎ | string‎ | wide
Revision as of 14:05, 2 November 2012 by P12bot (Talk | contribs)

Defined in header <cwchar>
wchar_t *wcsncat( wchar_t *dest, const wchar_t *src, std::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

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

Return value

dest

Example

See also

Template:cpp/string/wide/dcl list wcscatTemplate:cpp/string/wide/dcl list wcscpy
C documentation for wcsncat