/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strrchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/30 18:32:21 by gtertysh #+# #+# */ /* Updated: 2016/12/02 16:19:20 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" char *ft_strrchr(const char *s, int c) { const char *str; str = s; while (*s) s++; while (s != str && *s != (char)c) s--; if (*s == (char)c) return ((char *)s); return (NULL); }