-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strrchr.c
29 lines (26 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strrchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aabduvak <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/29 22:54:40 by aabduvak #+# #+# */
/* Updated: 2021/12/29 22:54:40 by aabduvak ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strrchr(const char *str, int c)
{
int position;
position = ft_strlen(str);
if (str)
{
while (str[position] != (char) c && position >= 0)
position--;
if (str[position] == (char)c)
return ((char *) &str[position]);
return (NULL);
}
return (NULL);
}