1MEMCPY(3) Linux Programmer's Manual MEMCPY(3)
2
3
4
6 memcpy - copy memory area
7
9 #include <string.h>
10
11 void *memcpy(void *dest, const void *src, size_t n);
12
14 The memcpy() function copies n bytes from memory area src to memory
15 area dest. The memory areas should not overlap. Use memmove(3) if the
16 memory areas do overlap.
17
19 The memcpy() function returns a pointer to dest.
20
22 SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
23
25 bcopy(3), memccpy(3), memmove(3), mempcpy(3), strcpy(3), strncpy(3),
26 wmemcpy(3)
27
28
29
30 1993-04-10 MEMCPY(3)