wcscat(3C) SDK R4.11 wcscat(3C)
NAME
wcscat - concatenate two wide character strings
SYNOPSIS
#include <wchar.h>
wchar_t *wcscat(wchar_t *ws1, const wchar_t *ws2);
DESCRIPTION
wcscat appends a copy of the wide character string ws2, including the
NULL wide character, to the end of the wide character string ws1.
The terminating null wide character at the end of ws1 is overwritten
by the initial wide character of ws2. The behavior is undefined if
copying takes place between overlapping objects.
These functions do not check for an overflow condition of the array
pointed to by ws1.
Return Value
wcscat returns ws1.
REFERENCES
wcsncat(3C)
Licensed material--property of copyright holder(s)