-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
32 lines (29 loc) · 1.13 KB
/
ft_memcpy.c
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
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ide-spir <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/04 12:41:58 by ide-spir #+# #+# */
/* Updated: 2022/01/11 11:24:40 by ide-spir ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *restrict dst, const void *restrict src, size_t n)
{
char *d;
const char *s;
size_t i;
d = (char *)dst;
s = (char *)src;
if (!d && !s)
return (NULL);
i = 0;
while (i < n)
{
d[i] = s[i];
i++;
}
return (dst);
}