-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
executable file
·33 lines (30 loc) · 1.2 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gyong-si <gyongsi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/12 11:08:14 by gyong-si #+# #+# */
/* Updated: 2023/09/22 17:07:53 by gyong-si ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <string.h>
void *ft_memcpy(void *dest, const void *src, size_t n)
{
size_t i;
char *src_char;
char *dest_char;
if (src == NULL && dest == NULL)
return (dest);
src_char = (char *)src;
dest_char = (char *)dest;
i = 0;
while (n > i)
{
dest_char[i] = src_char[i];
i++;
}
return (dest);
}