ft_memcpy - kibotrel/42-Libft GitHub Wiki
void *ft_memcpy(void *dst, const void *src, size_t n)
Description :
Copies n
bytes from memory area src
to dst
one. Theses two areas shouldn't overlap, if so, use ft_memmove().
Return Value :
Returns a pointer on dst
.