-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memccpy.c
executable file
·24 lines (22 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jraymond <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/10 22:12:01 by jraymond #+# #+# */
/* Updated: 2017/11/16 18:38:26 by jraymond ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
while (n--)
{
*(unsigned char*)dst++ = *(unsigned char*)src;
if (*(unsigned char*)src++ == (unsigned char)c)
return (dst);
}
return (NULL);
}