libft
Loading...
Searching...
No Matches
ft_memmove.c File Reference
#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.
 

Function Documentation

◆ ft_memmove()

void * ft_memmove ( void *  dst,
const void *  src,
size_t  len 
)

Copy memory area.

Copies len bytes of memory from source to destination.

Parameters
dstAddress of the destination
srcAddress of the source
lenNumber of bytes
Returns
void* Address of the destination

Definition at line 15 of file ft_memmove.c.