1MEMMOVE(9)                 Basic C Library Functions                MEMMOVE(9)
2
3
4

NAME

6       memmove - Copy one area of memory to another
7

SYNOPSIS

9       void * memmove(void * dest, const void * src, size_t count);
10

ARGUMENTS

12       dest
13           Where to copy to
14
15       src
16           Where to copy from
17
18       count
19           The size of the area.
20

DESCRIPTION

22       Unlike memcpy, memmove copes with overlapping areas.
23
25Kernel Hackers Manual 2.6.         June 2019                        MEMMOVE(9)
Impressum