-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memchr.c
executable file
·36 lines (32 loc) · 1.23 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
30
31
32
33
34
35
36
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ngouy <ngouy@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/07 14:52:46 by ngouy #+# #+# */
/* Updated: 2015/11/04 16:26:58 by ngouy ### ########.fr */
/* */
/* ************************************************************************** */
/*
** Find the first occurrence of c in s (of lenght n) and return a pointer
** to the byte located or NULL if not no such byte exists
*/
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
char *str;
if (s)
{
str = (char *)s;
while (n > 0)
{
if (*str == (char)c)
return ((void *)str);
n--;
str++;
}
}
return (NULL);
}