-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memccpy.c
26 lines (24 loc) · 1.13 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cyfermie <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/07 17:30:50 by cyfermie #+# #+# */
/* Updated: 2017/11/07 17:30:52 by cyfermie ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
while (n-- > 0)
{
*(unsigned char *)dst = *(unsigned char *)src;
if (*(unsigned char *)dst == (unsigned char)c)
return (dst + 1);
++dst;
++src;
}
return (NULL);
}