-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
27 lines (24 loc) · 1.12 KB
/
ft_memcpy.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fbarros <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/02/09 21:42:11 by fbarros #+# #+# */
/* Updated: 2021/03/12 19:52:19 by fbarros ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dest, const void *src, size_t n)
{
unsigned char *s;
unsigned char *d;
if (!dest && !src)
return (0);
s = (unsigned char *)src;
d = (unsigned char *)dest;
while (n--)
*d++ = *s++;
return (dest);
}