-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memccpy.c
More file actions
29 lines (26 loc) · 1.17 KB
/
ft_memccpy.c
File metadata and controls
29 lines (26 loc) · 1.17 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nhennigh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/11 14:50:30 by nhennigh #+# #+# */
/* Updated: 2019/02/14 16:39:39 by nhennigh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
char *ptr;
size_t i;
ptr = (char *)dst;
i = -1;
while (++i < n)
{
*(ptr + i) = *((unsigned char *)src + i);
if (*((unsigned char *)src + i) == (unsigned char)c)
return (dst + i + 1);
}
return (NULL);
}