-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memmove.c
More file actions
39 lines (37 loc) · 1.26 KB
/
ft_memmove.c
File metadata and controls
39 lines (37 loc) · 1.26 KB
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: youngcch <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/17 16:59:56 by youngcch #+# #+# */
/* Updated: 2023/03/22 17:47:21 by youngcch ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
unsigned char *s1;
unsigned char *s2;
if (dst == src || len == 0)
return (dst);
s1 = (unsigned char *)dst;
s2 = (unsigned char *)src;
if (s1 < s2)
{
while (len > 0)
{
*s1++ = *s2++;
len--;
}
}
else
{
s1 += len - 1;
s2 += len - 1;
while (len-- > 0)
*s1-- = *s2--;
}
return (dst);
}