-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
33 lines (30 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ariahi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/05 17:49:56 by ariahi #+# #+# */
/* Updated: 2021/11/27 14:30:59 by ariahi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
unsigned char *c_dst;
unsigned char *c_src;
c_dst = (unsigned char *)dst;
c_src = (unsigned char *)src;
if (!dst && !src)
return (NULL);
if (c_dst > c_src)
{
while (len--)
c_dst[len] = c_src[len];
return (dst);
}
while (len--)
*c_dst++ = *c_src++;
return (dst);
}