-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
41 lines (38 loc) · 1.42 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
40
41
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alexmitcul <alexmitcul@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/19 19:43:04 by alexmitcul #+# #+# */
/* Updated: 2022/11/07 00:45:25 by alexmitcul ### ########.fr */
/* */
/* ************************************************************************** */
/**
* - Description:
* The memmove() function copies len bytes from string src to string dst.
* The two strings may overlap; the copy is always done in
* a non-destructive manner.
*
* - Return value:
* The memmove() function returns the original value of dst.
**/
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
if (!dst && !src)
return (NULL);
if (src < dst)
{
while (len--)
{
((unsigned char *)dst)[len] = ((unsigned char *)src)[len];
}
}
else if (src > dst)
{
ft_memcpy(dst, src, len);
}
return (dst);
}