-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memmove.c
33 lines (30 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: youkim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/08 18:18:00 by youkim #+# #+# */
/* Updated: 2021/05/08 19:24:20 by youkim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
size_t i;
unsigned char *dstptr;
const unsigned char *srcptr;
if (dst == src || !len)
return (dst);
i = 0;
dstptr = (unsigned char *)dst;
srcptr = (unsigned char *)src;
if (dst <= src)
while (++i <= len)
dstptr[i - 1] = srcptr[i - 1];
else if (dst > src)
while (++i <= len)
dstptr[len - i] = srcptr[len - i];
return (dst);
}