-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcpy.c
executable file
Β·29 lines (26 loc) Β· 1.08 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
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: selchoi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/12/26 14:55:09 by selchoi #+# #+# */
/* Updated: 2021/01/12 00:35:59 by selchoi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memcpy(void *dst, const void *src, size_t n)
{
char *tmp;
if (!dst && !src)
return (void *)0;
tmp = dst;
while (n--)
{
*tmp = *(char *)src;
++tmp;
++src;
}
return (dst);
}