-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_whereisch.c
26 lines (23 loc) · 1.04 KB
/
ft_whereisch.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_whereisch.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sbecker <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/12/18 09:48:05 by sbecker #+# #+# */
/* Updated: 2018/12/21 03:44:13 by sbecker ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_whereisch(char *s, int c)
{
int i;
i = -1;
if (!s)
return (0);
while (s[++i])
if (s[i] == (char)c)
return (++i);
return (0);
}