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