Memory Functions
LIB_FT
ft_memmove.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
void *ft_memmove(void *dest, const void *src, size_t n);
Copies a block of memory from one location to another, safely handling overlapping memory regions.
ft_memmove
copies exactly n
bytes from src
to dest
.