-
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.29 KB
/
ft_memmove.c
File metadata and controls
39 lines (36 loc) · 1.29 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: tcharuel <tcharuel@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/06 18:25:05 by tcharuel #+# #+# */
/* Updated: 2023/11/08 17:06:29 by tcharuel ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dest, const void *src, size_t n)
{
unsigned char *buffer_dest;
int i;
if (dest == src || n == 0)
return (dest);
buffer_dest = (unsigned char *)dest;
if (dest < src)
{
i = 0;
while ((size_t)i < n)
{
buffer_dest[i] = ((unsigned char *)src)[i];
i++;
}
}
else
{
i = n;
while (--i >= 0)
buffer_dest[i] = ((unsigned char *)src)[i];
}
return (dest);
}