Memory Functions
LIB_FT
ft_memcpy.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
void *ft_memcpy(void *dest, const void *src, size_t n);
Copies a block of memory from one location to another, byte by byte. Does not handle overlapping memory.
ft_memcpy
copies exactly n
bytes from the memory area pointed to by src
to the memory area pointed to by dest
.