1WMEMMOVE(3) Linux Programmer's Manual WMEMMOVE(3)
2
3
4
6 wmemmove - copy an array of wide-characters
7
9 #include <wchar.h>
10
11 wchar_t *wmemmove(wchar_t *dest, const wchar_t *src, size_t n);
12
14 The wmemmove() function is the wide-character equivalent of the mem‐
15 move(3) function. It copies n wide characters from the array starting
16 at src to the array starting at dest. The arrays may overlap.
17
18 The programmer must ensure that there is room for at least n wide char‐
19 acters at dest.
20
22 wmemmove() returns dest.
23
25 C99.
26
28 memmove(3), wmemcpy(3)
29
31 This page is part of release 3.53 of the Linux man-pages project. A
32 description of the project, and information about reporting bugs, can
33 be found at http://www.kernel.org/doc/man-pages/.
34
35
36
37GNU 1999-07-25 WMEMMOVE(3)