-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
executable file
·39 lines (36 loc) · 1.31 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
38
39
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chonorat <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/05 15:43:20 by chonorat #+# #+# */
/* Updated: 2022/12/05 15:43:21 by chonorat ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
size_t index;
index = 0;
if (!dst && !src)
return (NULL);
if ((unsigned char *)src < (unsigned char *)dst)
{
while (len > 0)
{
len--;
((unsigned char *)dst)[len] = ((unsigned char *)src)[len];
}
}
else
{
while (index < len)
{
((unsigned char *)dst)[index] = ((unsigned char *)src)[index];
index++;
}
}
return ((unsigned char *)dst);
}