-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_memchr.c
29 lines (26 loc) · 1.11 KB
/
ft_memchr.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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_memchr.c :+: :+: */
/* +:+ */
/* By: ksmorozo <ksmorozo@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/10/31 20:25:23 by ksmorozo #+# #+# */
/* Updated: 2021/07/07 12:17:14 by ksmorozo ######## odam.nl */
/* */
/* ************************************************************************** */
#include <stddef.h>
void *ft_memchr(const void *str, int c, size_t n)
{
size_t count;
char *buffer;
buffer = (char *)str;
count = 0;
while (count < n)
{
if (buffer[count] == c)
return (buffer + count);
count++;
}
return (NULL);
}