/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/03 16:14:15 by jhalford #+# #+# */ /* Updated: 2016/08/03 16:14:29 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strlen(char *str) { int i; i = 0; while (str[i] != '\0') i++; return (i); }