-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memccpy.c
More file actions
30 lines (27 loc) · 1.29 KB
/
ft_memccpy.c
File metadata and controls
30 lines (27 loc) · 1.29 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ophuong <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/06 17:23:08 by ophuong #+# #+# */
/* Updated: 2019/09/17 12:11:59 by ophuong ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
size_t id;
id = 0;
while (id < n && ((unsigned char *)src)[id] != (unsigned char)c)
{
((unsigned char *)dst)[id] = ((unsigned char *)src)[id];
id++;
}
if (id == n)
return (NULL);
else if (((unsigned char *)src)[id] == (unsigned char)c)
((unsigned char *)dst)[id] = ((unsigned char *)src)[id];
return ((void *)dst + id + 1);
}