-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memccpy.c
32 lines (29 loc) · 1.24 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
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rmc-coma <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/25 09:49:42 by rmc-coma #+# #+# */
/* Updated: 2015/12/02 18:59:10 by rmc-coma ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
size_t i;
i = 0;
if (dst == NULL || src == NULL)
return (NULL);
while (i < n)
{
if ((((unsigned char *)dst)[i] = ((unsigned char *)src)[i])
== (unsigned char)c)
break ;
i++;
}
if (((unsigned char *)src)[i] == (unsigned char)c)
return (&dst[i + 1]);
return (NULL);
}