-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
32 lines (29 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
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ohachim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/09 01:59:16 by ohachim #+# #+# */
/* Updated: 2018/10/19 20:25:50 by ohachim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dst, const void *src, size_t n)
{
char *dup1;
char *dup2;
void *dsthold;
size_t cn;
cn = 0;
dsthold = dst;
dup1 = (char*)dst;
dup2 = (char*)src;
while (cn < n)
{
dup1[cn] = dup2[cn];
cn++;
}
return (dsthold);
}