-
Notifications
You must be signed in to change notification settings - Fork 4
/
ft_strrchr.c
28 lines (25 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strrchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aalvarez <aalvarez@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/20 19:18:03 by aalvarez #+# #+# */
/* Updated: 2024/06/21 13:20:23 by aalvarez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <unistd.h>
char *ft_strrchr(const char *s, int c)
{
const char *s_cpy;
s_cpy = s + ft_strlen(s);
while (s_cpy >= s)
{
if (*s_cpy == (char)c)
return ((char *)s_cpy);
s_cpy--;
}
return (NULL);
}