VMS Help
CRTL, wmemcpy
*Conan The Librarian
|
Copies a specified number of wide characters from one wide-
character array to another.
Format
#include <wchar.h>
wchar_t wmemcpy (wchar_t *dest, const wchar_t *source, size_t n);
The wmemcpy function has variants named _wmemcpy32 and _wmemcpy64
for use with 32-bit and 64-bit pointer sizes, respectively.
dest
A pointer to the destination array.
source
A pointer to the source array.
n
The number of wide characters to be copied.
The wmemcpy function copies n wide characters from the array
pointed to by source to the array pointed to by dest.
x The value of dest.