blob: b788ed7b53f1af550a958a200d26c10a132c606c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_uintlen.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/12/31 14:37:05 by rbousset #+# ## ## #+# */
/* Updated: 2019/12/31 14:37:06 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <inttypes.h>
uint8_t
ft_uintlen(unsigned long n)
{
uint8_t len;
len = 0;
if (!n)
return (1);
while (n != 0)
{
n /= 10;
len++;
}
return (len);
}
|