memcpy
---copy memory regions#include <string.h> void* memcpy(void *out, const void *in, size_t n);Description
If the regions overlap, the behavior is undefined.
Returns
memcpy
returns a pointer to the first byte of the out
region.
Portability
memcpy
is ANSI C.
memcpy
requires no supporting OS subroutines.