summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strrnchr.c
diff options
context:
space:
mode:
authorsalad <fmoenne-@student.le-101.fr>2020-12-16 13:10:11 +0100
committersalad <fmoenne-@student.le-101.fr>2020-12-16 13:10:11 +0100
commit711bc9edbd9646900fc7e00e7b3457c2070ac31f (patch)
tree2b173316fcea1f8609fc9494dadce17588f248b4 /libft/src/ft_strrnchr.c
parentnorm tobecontinued2 (diff)
download42-minishell-711bc9edbd9646900fc7e00e7b3457c2070ac31f.tar.gz
42-minishell-711bc9edbd9646900fc7e00e7b3457c2070ac31f.tar.bz2
42-minishell-711bc9edbd9646900fc7e00e7b3457c2070ac31f.tar.xz
42-minishell-711bc9edbd9646900fc7e00e7b3457c2070ac31f.tar.zst
42-minishell-711bc9edbd9646900fc7e00e7b3457c2070ac31f.zip
qwe
Diffstat (limited to '')
-rw-r--r--libft/src/ft_strrnchr.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/libft/src/ft_strrnchr.c b/libft/src/ft_strrnchr.c
new file mode 100644
index 0000000..d6b8fdd
--- /dev/null
+++ b/libft/src/ft_strrnchr.c
@@ -0,0 +1,27 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_strrnchr.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <libft.h>
+
+char *ft_strrnchr(const char *s, int c, size_t start)
+{
+ size_t i;
+
+ i = ft_strlen(s) - start;
+ while (s[i] != c)
+ {
+ if (i == 0)
+ return (NULL);
+ i--;
+ }
+ return ((char*)&s[i]);
+}