tgrekov-libft
HIVE libft Oct 2023
|
Definition in file ft_memmove.c.
#include "libft.h"
Go to the source code of this file.
Functions | |
void * | ft_memmove (void *dst, const void *src, size_t len) |
Copies len bytes from byte string src to byte string dst non-destructively. | |
void * ft_memmove | ( | void * | dst, |
const void * | src, | ||
size_t | len | ||
) |
Copies len
bytes from byte string src
to byte string dst
non-destructively.
src
and dst
may overlap in any manner, the function will switch copy directions to ensure the data is copied non-destructively.
[in] | dst | Pointer to destination byte string |
[in] | src | Pointer to source byte string |
[in] | len | Number of bytes to copy |
void* | dst |
Definition at line 34 of file ft_memmove.c.