-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_memcpy.c
32 lines (29 loc) · 1.18 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: sel-mlil <sel-mlil@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/23 02:13:54 by sel-mlil #+# #+# */
/* Updated: 2024/10/30 20:29:28 by sel-mlil ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dest, const void *src, size_t n)
{
size_t i;
unsigned char *d;
const unsigned char *s;
if (dest == NULL && src == NULL)
return (NULL);
i = 0;
d = (unsigned char *)dest;
s = (const unsigned char *)src;
while (i < n)
{
d[i] = s[i];
i++;
}
return (d);
}