-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memmove.c
37 lines (34 loc) · 1.19 KB
/
ft_memmove.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
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lmartine <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/26 20:45:33 by lmartine #+# #+# */
/* Updated: 2018/03/06 23:18:27 by lmartine ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
size_t i;
if (dst == src)
return (dst);
if (dst > src)
{
i = len;
while (i-- > 0)
((char*)dst)[i] = ((char*)src)[i];
}
else
{
i = 0;
while (i < len)
{
((char*)dst)[i] = ((char*)src)[i];
i++;
}
}
return (dst);
}