|
Libft
42 Libft library documentation
|
#include <stdlib.h>
Include dependency graph for ft_memmove.c:Go to the source code of this file.
Functions | |
| void * | ft_memmove (void *dst, const void *src, size_t len) |
| Copies bytes between potentially overlapping memory areas. | |
| void * ft_memmove | ( | void * | dst, |
| const void * | src, | ||
| size_t | len | ||
| ) |
Copies bytes between potentially overlapping memory areas.
| dst | Destination memory area. |
| src | Source memory area. |
| len | Number of bytes to copy. |
dst pointer, or NULL when both pointers are NULL. Definition at line 23 of file ft_memmove.c.