-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_memccpy.c
32 lines (29 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
25
26
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marsoare <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/22 13:57:26 by marsoare #+# #+# */
/* Updated: 2024/02/22 14:11:35 by marsoare ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memccpy(void *dest, const void *src, int c, size_t n)
{
char *d;
char *s;
d = (char *)dest;
s = (char *)src;
while (n > 0)
{
*d = *s;
if (*s == c)
break ;
s++;
d++;
n--;
}
return (d);
}