ft_strlen not strlen

This commit is contained in:
Jack Halford 2016-08-28 18:25:00 +02:00
parent 481c8641ed
commit 0ba571afc9

View file

@ -1,6 +1,6 @@
#include "libft.h" #include "libft.h"
size_t strlen(const char *s) size_t ft_strlen(const char *s)
{ {
int i; int i;