forked from BBFayz/Libft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memccpy.c
23 lines (21 loc) · 1.09 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: azybert <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/14 12:36:09 by azybert #+# #+# */
/* Updated: 2017/08/11 03:07:32 by azybert ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
while (n--)
if ((*(unsigned char *)(dst++) =
*(unsigned char *)(src++)) ==
(unsigned char)c)
return (dst);
return (NULL);
}