/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/02 14:37:01 by jhalford #+# #+# */ /* Updated: 2016/08/09 10:48:02 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strlen(char *str) { int i; i = 0; while (str[i] != '\0') i++; return (i); }