wcscpy(3C) wcscpy(3C)
NAME
wcscpy - copy a wide character string
SYNOPSIS
#include <wchar.h>
wchar_t *wcscpy(wchar_t *ws1,const wchar_t *ws2);
DESCRIPTION
wcscpy copies the wide string ws2 to the array ws1, stopping
after the null wide character has been copied. The behavior is
undefined if copying occurs between overlapping objects.
Return Value
wcscpy returns ws1.
USAGE
Overlapping moves may cause unexpected results because the
movement of wide character codes is implementation-dependent.
REFERENCES
wchar(5) wcsncpy(3C)
Copyright 1994 Novell, Inc. Page 1