-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
27 lines (24 loc) · 1.14 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hsaadi <hsaadi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/06 06:11:52 by hsaadi #+# #+# */
/* Updated: 2022/10/29 03:04:19 by hsaadi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/libft.h"
void *ft_memcpy(void *dst, const void *src, size_t n)
{
unsigned char *dest;
unsigned char *src1;
if (!dst && !src)
return (NULL);
dest = (unsigned char *)dst;
src1 = (unsigned char *)src;
while (n--)
*dest++ = *src1++;
return (dst);
}