-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memcpy.c
35 lines (31 loc) · 1.3 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
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yshimoda <yshimoda@student.42tokyo.jp> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/06 11:14:10 by yshimoda #+# #+# */
/* Updated: 2022/10/24 08:09:17 by yshimoda ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *restrict dst, const void *restrict src, size_t n)
{
size_t i;
unsigned char *dst_ptr;
unsigned char *src_ptr;
if (!src && !dst)
return (0);
dst_ptr = (unsigned char *)dst;
src_ptr = (unsigned char *)src;
i = 0;
while (i < n)
{
dst_ptr[i] = src_ptr[i];
i++;
}
return (dst);
}
// C99 introduces the RESTRICT modifier to explicitly
// indicate that it refers to a different region.