-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memccpy.c
24 lines (22 loc) · 1.11 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: rodrodri <[email protected] > +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/29 11:26:52 by rodrodri #+# #+# */
/* Updated: 2021/11/10 18:26:52 by rodrodri ### ########.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 - 1) == (unsigned char)c)
return (dst);
}
return (NULL);
}