-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
35 lines (32 loc) · 1.29 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
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: salecler <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/15 09:44:10 by salecler #+# #+# */
/* Updated: 2022/06/23 14:32:50 by salecler ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t size)
{
unsigned char *origin;
unsigned char *destination;
origin = (unsigned char *)src;
destination = (unsigned char *)dst;
if (origin > destination)
{
while (size--)
*destination++ = *origin++;
}
if (origin < destination)
{
origin += size - 1;
destination += size - 1;
while (size--)
*destination-- = *origin--;
}
return (dst);
}