-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memcpy.c
More file actions
27 lines (25 loc) · 1.1 KB
/
ft_memcpy.c
File metadata and controls
27 lines (25 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fraqioui <fraqioui@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/06 10:36:10 by fraqioui #+# #+# */
/* Updated: 2022/10/18 17:01:31 by fraqioui ### ########.fr */
/* */
/* ************************************************************************** */
#include"libft.h"
void *ft_memcpy(void *dst, const void *src, size_t n)
{
size_t i;
if (!dst && !src)
return (NULL);
i = 0;
while (i < n)
{
*((unsigned char *)dst + i) = *((unsigned char *)src + i);
i++;
}
return (dst);
}