-
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.16 KB
/
ft_memccpy.c
File metadata and controls
29 lines (26 loc) · 1.16 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: nparker <nparker@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/28 13:45:15 by nparker #+# #+# */
/* Updated: 2018/12/05 17:26:51 by nparker ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
size_t i;
char *cdst;
i = -1;
cdst = dst;
while (++i < n)
{
*(cdst + i) = *((unsigned char*)src + i);
if (*((unsigned char *)cdst + i) == ((unsigned char)c))
return (dst + i + 1);
}
return (NULL);
}