-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memcpy.c
27 lines (24 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: eel-orch <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/13 15:58:56 by eel-orch #+# #+# */
/* Updated: 2019/11/09 21:39:37 by eel-orch ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dst, const void *src, size_t n)
{
unsigned char *tab;
unsigned char *ptr;
tab = (unsigned char *)src;
ptr = (unsigned char *)dst;
if (tab == 0 && ptr == 0)
return (0);
while (n--)
*ptr++ = *tab++;
return (dst);
}