-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strrchr.c
37 lines (34 loc) · 1.12 KB
/
ft_strrchr.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
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strrchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apimikov <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 09:07:16 by apimikov #+# #+# */
/* Updated: 2023/11/01 09:07:18 by apimikov ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strrchr(const char *s, int c)
{
int i;
i = 0;
while (*s)
{
i++;
s++;
}
if ((char)c == *s)
return ((char *)s);
else
s--;
while (i)
{
if (*s == (char)c)
return ((char *)s);
i--;
s--;
}
return (NULL);
}