1MEMMOVE(3) Linux Programmer's Manual MEMMOVE(3)
2
3
4
6 memmove - copy memory area
7
9 #include <string.h>
10
11 void *memmove(void *dest, const void *src, size_t n);
12
14 The memmove() function copies n bytes from memory area src to memory
15 area dest. The memory areas may overlap: copying takes place as though
16 the bytes in src are first copied into a temporary array that does not
17 overlap src or dest, and the bytes are then copied from the temporary
18 array to dest.
19
21 The memmove() function returns a pointer to dest.
22
24 SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
25
27 bcopy(3), memccpy(3), memcpy(3), strcpy(3), strncpy(3), wmemmove(3)
28
30 This page is part of release 3.53 of the Linux man-pages project. A
31 description of the project, and information about reporting bugs, can
32 be found at http://www.kernel.org/doc/man-pages/.
33
34
35
36GNU 1993-04-10 MEMMOVE(3)