|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| void * | ft_memmove (void *dst, const void *src, size_t len) |
| Copy memory area. | |
| void * ft_memmove | ( | void * | dst, |
| const void * | src, | ||
| size_t | len | ||
| ) |
Copy memory area.
Copies len bytes of memory from source to destination.
| dst | Address of the destination |
| src | Address of the source |
| len | Number of bytes |
Definition at line 15 of file ft_memmove.c.