-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memcpy.c
29 lines (26 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nhennigh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/11 12:24:15 by nhennigh #+# #+# */
/* Updated: 2019/02/14 13:17:49 by nhennigh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dst, const void *src, size_t n)
{
char *s_temp;
char *d_temp;
s_temp = (char *)src;
d_temp = (char *)dst;
while (n--)
{
*d_temp = *s_temp;
d_temp++;
s_temp++;
}
return (dst);
}