-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
27 lines (24 loc) · 1.15 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thakala <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/08 14:35:21 by thakala #+# #+# */
/* Updated: 2021/12/16 20:11:46 by thakala ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
void *ft_memmove(void *dst, const void *src, size_t len)
{
size_t i;
i = (size_t)(-1);
if (src < dst)
while (--len + 1)
((char *)dst)[len] = ((char *)src)[len];
else if (src > dst)
while (++i < len)
((char *)dst)[i] = ((char *)src)[i];
return (dst);
}