wcscat(3C) 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
wchar(5), wcsncat(3C)
Copyright 1994 Novell, Inc. Page 1