-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_strrchr.c
34 lines (31 loc) · 1.15 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strrchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuotsuka <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/18 21:05:51 by yuotsuka #+# #+# */
/* Updated: 2024/04/26 18:22:52 by yuotsuka ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strrchr(const char *s, int c)
{
char *save;
save = NULL;
while (1)
{
if (*s == (char) c)
save = (char *)s;
if (!*s)
return (save);
s++;
}
}
// int main()
// {
// int c = 't';
// char *str = "batata";
// printf("%s", ft_strchr(str, c));
// }