/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_uintlen.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/12/31 14:37:05 by rbousset #+# ## ## #+# */ /* Updated: 2019/12/31 14:37:06 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include uint8_t ft_uintlen(unsigned long n) { uint8_t len; len = 0; if (!n) return (1); while (n != 0) { n /= 10; len++; } return (len); }