7.24.4.2.3 The wmemcpy function

Synopsis

1

#include <wchar.h>
wchar_t *wmemcpy(wchar_t * restrict s1,
     const wchar_t * restrict s2,
     size_t n);

Description

2

The wmemcpy function copies n wide characters from the object pointed to by s2 to the object pointed to by s1.

Returns

3

The wmemcpy function returns the value of s1.