wcscat function — Concatenates wide strings
wchar_t* wcscat(wchar_t* dst, const wchar_t* src)
The wcscat
function
concatenates src
onto the end of
dst
, overwriting the null
character at the end of dst
. The
caller must ensure that dst
points to a region of memory that is large enough to hold the entire
string plus its null terminator. The return value is dst
.