-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
26 lines (23 loc) · 1.07 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nahmed-m <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/12/14 08:34:11 by nahmed-m #+# #+# */
/* Updated: 2015/12/14 08:34:56 by nahmed-m ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dest, const void *src, size_t n)
{
size_t count;
count = 0;
while (count < n)
{
((char*)dest)[count] = ((char*)src)[count];
count++;
}
return (dest);
}