-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
33 lines (30 loc) · 1.21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: smurad <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/12/15 20:15:17 by smurad #+# #+# */
/* Updated: 2019/12/18 16:13:58 by smurad ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
unsigned char *ptr_src;
unsigned char *ptr_dst;
ptr_src = (unsigned char *)src;
ptr_dst = (unsigned char *)dst;
if (ptr_src >= ptr_dst)
ft_memcpy(dst, src, len);
else
{
while (len > 0)
{
len--;
ptr_dst[len] = ptr_src[len];
}
}
return (dst);
}