-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
38 lines (35 loc) · 1.27 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
36
37
38
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yeonhkim <[email protected].> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/08 17:42:17 by yeonhkim #+# #+# */
/* Updated: 2022/07/08 19:13:45 by yeonhkim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
unsigned char *dst_p;
const unsigned char *src_p;
if (!dst && !src)
return (NULL);
dst_p = (unsigned char *)dst;
src_p = (const unsigned char *)src;
if (src_p >= dst_p)
{
while (len--)
*dst_p++ = *src_p++;
}
else
{
while (len)
{
*(dst_p + len - 1) = *(src_p + len - 1);
len--;
}
}
return (dst);
}