-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memccpy.c
More file actions
32 lines (29 loc) · 1.26 KB
/
ft_memccpy.c
File metadata and controls
32 lines (29 loc) · 1.26 KB
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: fokrober <fokrober@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/22 04:51:39 by fokrober #+# #+# */
/* Updated: 2019/05/04 20:12:13 by nkhribec ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
size_t i;
i = 0;
while (n && ((unsigned char*)src)[i] != (unsigned char)c)
{
((unsigned char*)dst)[i] = ((unsigned char*)src)[i];
i++;
n--;
}
if (n && ((unsigned char*)src)[i] == (unsigned char)c)
{
((unsigned char*)dst)[i] = ((unsigned char*)src)[i];
return (&dst[i + 1]);
}
return (NULL);
}