-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
31 lines (28 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hshawand <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/04 11:04:29 by hshawand #+# #+# */
/* Updated: 2019/04/09 09:20:19 by hshawand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *destination, const void *source, size_t num)
{
size_t i;
if (source >= destination)
ft_memcpy(destination, source, num);
else
{
i = 1;
while ((int)(num - i) >= 0)
{
((char *)destination)[num - i] = ((char *)source)[num - i];
i++;
}
}
return (destination);
}