-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memmove.c
More file actions
39 lines (36 loc) · 1.22 KB
/
ft_memmove.c
File metadata and controls
39 lines (36 loc) · 1.22 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: nhennigh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/11 14:52:03 by nhennigh #+# #+# */
/* Updated: 2019/02/14 16:29:12 by nhennigh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
char *d_temp;
char *s_temp;
d_temp = (char *)dst;
s_temp = (char *)src;
if (s_temp < d_temp)
{
while ((int)--len >= 0)
{
d_temp[len] = s_temp[len];
}
}
else
{
while ((int)len--)
{
*d_temp = *s_temp;
d_temp++;
s_temp++;
}
}
return (dst);
}