/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_ilen_base.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 13:53:53 by jhalford #+# #+# */ /* Updated: 2016/11/07 14:45:28 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" size_t ft_ilen_base(int n, int base) { size_t i; i = 1; while (n /= base) i++; return (i); }