-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathft_memchr.c
24 lines (21 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vvarodi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/21 15:21:50 by vvarodi #+# #+# */
/* Updated: 2020/01/21 15:31:26 by vvarodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
unsigned char *str;
str = (unsigned char *)s;
while (n--)
if (*str++ == (unsigned char)c)
return (str - 1);
return (NULL);
}