table of contents
other versions
- wheezy-backports 3.16.39-1+deb8u1~bpo70+1
- jessie 3.16.43-2
MEMMOVE(9) | Basic C Library Functions | MEMMOVE(9) |
NAME¶
memmove - Copy one area of memory to anotherSYNOPSIS¶
void *
memmove(void * dest,
const void * src,
size_t count);
ARGUMENTS¶
destWhere to copy to
src
Where to copy from
count
The size of the area.
DESCRIPTION¶
Unlike memcpy, memmove copes with overlapping areas.COPYRIGHT¶
February 2017 | Kernel Hackers Manual 3.16 |