-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memccpy.c
28 lines (25 loc) · 1.11 KB
/
ft_memccpy.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lmartine <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/26 20:37:12 by lmartine #+# #+# */
/* Updated: 2018/03/06 22:03:02 by lmartine ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
size_t i;
i = 0;
while (i < n)
{
((char*)dst)[i] = ((char*)src)[i];
if (((char*)dst)[i] == (char)c)
return (&dst[i + 1]);
i++;
}
return (NULL);
}