Libft(3) - memcpy
Libft(3) - memcpy MEMCPY(3) BSD Library Functions Manual MEMCPY(3) NAME memcpy -- copy memory area LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memcpy(void *restrict dst, const void *restrict src, size_t n); DESCRIPTION The memcpy() function copies n bytes from memory area src to memory area dst. If dst and src overlap, behavior is undefined. Applications in which dst and src ..
2021.05.22