/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lllen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 13:52:35 by jhalford #+# #+# */ /* Updated: 2016/11/07 14:45:40 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" size_t ft_lllen(long long n) { size_t i; i = 1; while (n /= 10) i++; return (i); }