-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memcpy.c
28 lines (25 loc) · 1.12 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lubaujar <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/05 19:09:19 by lubaujar #+# #+# */
/* Updated: 2014/11/13 14:33:23 by lubaujar ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dst, void const *src, size_t n)
{
char *cast_dst;
char const *cast_src;
cast_dst = (char *)dst;
cast_src = (char const *)src;
while (n > 0)
{
cast_dst[n - 1] = cast_src[n - 1];
n--;
}
return (dst);
}