![]() -> Click here to learn how to get live help <- |
WCSCPYIndexNAMEwcscpy - copy a wide character stringSYNOPSIS#include <wchar.h> wchar_t *wcscpy(wchar_t *dest, const wchar_t *src); DESCRIPTIONThe fBwcscpyfP function is the wide-character equivalent of the fBstrcpyfP function. It copies the wide character string pointed to by fIsrcfP, including the terminating L' ' character, to the array pointed to by fIdestfP.The strings may not overlap. The programmer must ensure that there is room for at least fIwcslen(src)+1fP wide characters at fIdestfP. RETURN VALUEfBwcscpyfP returns fIdestfP.CONFORMING TOISO/ANSI C, UNIX98SEE ALSOstrcpy(3), wcpcpy(3), wcscat(3), wcsdup(3), wmemcpy(3)
Index |