minishell
ft_memcpy.c File Reference
#include "ft_mem.h"
Include dependency graph for ft_memcpy.c:

Go to the source code of this file.

Functions

void * ft_memcpy (void *dst, const void *src, size_t n)
 

Function Documentation

◆ ft_memcpy()

void* ft_memcpy ( void *  dst,
const void *  src,
size_t  n 
)

Definition at line 15 of file ft_memcpy.c.

16 {
17  return (ft_memmove(dst, src, n));
18 }
void * ft_memmove(void *dst, const void *src, size_t n)
Definition: ft_memmove.c:16
Here is the call graph for this function:
Here is the caller graph for this function: