/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_ilen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 13:53:53 by jhalford #+# #+# */ /* Updated: 2017/02/18 15:41:20 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" size_t ft_ilen(int n) { size_t i; i = 1; while (n /= 10) i++; return (i); }