-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memmove.c
34 lines (31 loc) · 1.23 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: solariscode <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/23 20:48:08 by melkholy #+# #+# */
/* Updated: 2022/06/13 22:29:49 by melkholy ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dest, const void *src, size_t n)
{
size_t count;
if (!dest && !src)
return (NULL);
count = 0;
if (src < dest)
while (n--)
((unsigned char *)dest)[n] = ((unsigned char *)src)[n];
else
{
while (count < n)
{
((unsigned char *)dest)[count] = ((unsigned char *)src)[count];
count ++;
}
}
return (dest);
}