From 0ba571afc95121c973fc150a624f13340b8fc1d9 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Sun, 28 Aug 2016 18:25:00 +0200 Subject: [PATCH] ft_strlen not strlen --- libftasm/ft_strlen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libftasm/ft_strlen.c b/libftasm/ft_strlen.c index 000ad5ac..2e73dbb9 100644 --- a/libftasm/ft_strlen.c +++ b/libftasm/ft_strlen.c @@ -1,6 +1,6 @@ #include "libft.h" -size_t strlen(const char *s) +size_t ft_strlen(const char *s) { int i;