23 lines
995 B
C
23 lines
995 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_ilen.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/11/07 13:53:53 by jhalford #+# #+# */
|
|
/* Updated: 2016/11/07 14:44:35 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
size_t ft_ilen(int n)
|
|
{
|
|
size_t i;
|
|
|
|
i = 1;
|
|
while (n /= 10)
|
|
i++;
|
|
return (i);
|
|
}
|