wcscat(3C)


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

wchar(5), wcsncat(3C)
30 January 1998
© 1998 The Santa Cruz Operation, Inc. All rights reserved.