-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_memmove.c
32 lines (29 loc) · 1.17 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marsoare <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/22 14:17:04 by marsoare #+# #+# */
/* Updated: 2024/04/16 12:55:08 by marsoare ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dest, const void *src, size_t n)
{
unsigned char *d;
unsigned char *s;
d = (unsigned char *)dest;
s = (unsigned char *)src;
if (!d && !s)
return (NULL);
if (s > d)
return (ft_memcpy(d, s, n));
else
{
while (n--)
d[n] = s[n];
}
return (d);
}