-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memmove.c
35 lines (32 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alaulom <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/08 15:28:32 by alaulom #+# #+# */
/* Updated: 2014/11/14 16:48:25 by alaulom ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memmove(void *dst, const void *src, size_t len)
{
unsigned char *ptrdst;
const unsigned char *ptrsrc;
if (!len)
return (dst);
ptrdst = (unsigned char *)dst;
ptrsrc = (const unsigned char *)src;
if (ptrsrc < ptrdst)
{
ptrdst += len;
ptrsrc += len;
while (len--)
*--ptrdst = *--ptrsrc;
}
else
while (len--)
*ptrdst++ = *ptrsrc++;
return (dst);
}