![]() -> Click here to learn how to get live help <- |
WMEMCPYIndexNAMEwmemcpy - copy an array of wide-charactersSYNOPSIS#include <wchar.h> wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t n); DESCRIPTIONThe fBwmemcpyfP function is the wide-character equivalent of the fBmemcpyfP function. It copies fInfP wide characters from the array starting at fIsrcfP to the array starting at fIdestfP.The arrays may not overlap; use fBwmemmovefP(3) to copy between overlapping arrays. The programmer must ensure that there is room for at least fInfP wide characters at fIdestfP. RETURN VALUEfBwmemcpyfP returns fIdestfP.CONFORMING TOISO/ANSI C, UNIX98SEE ALSOmemcpy(3), wcscpy(3), wmemmove(3), wmempcpy(3)
Index |