ft_memmove - kibotrel/42-Libft GitHub Wiki
void *ft_memmove(void *dst, const void *src, size_t len)
Description :
Copies n
bytes of memory area src
to dst
one. This process is non destructive.
Return Value :
Returns a pointer on dst
.
void *ft_memmove(void *dst, const void *src, size_t len)
Description :
Copies n
bytes of memory area src
to dst
one. This process is non destructive.
Return Value :
Returns a pointer on dst
.