1MEMMOVE(9) Basic C Library Functions MEMMOVE(9)
23
4
NAME
6memmove - Copy one area of memory to another
7
SYNOPSIS
9void * memmove(void * dest, const void * src, size_t count);
10
ARGUMENTS
12dest
13Where to copy to
1415
src
16Where to copy from
1718
count
19The size of the area.
20
DESCRIPTION
22Unlike memcpy, memmove copes with overlapping areas.
23
COPYRIGHT
25Kernel Hackers Manual 2.6. November 2011 MEMMOVE(9)