-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memccpy.c
25 lines (23 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
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ewilliam <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/29 21:19:12 by ewilliam #+# #+# */
/* Updated: 2016/12/08 13:59:13 by ewilliam ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.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);
n--;
}
return (NULL);
}