blob: 1ed6725b6d071f38d5b3568d12dc243ea106d612 (
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
31
32
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_intlen.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/12/07 02:24:29 by rbousset #+# ## ## #+# */
/* Updated: 2019/12/07 02:24:30 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <inttypes.h>
uint8_t
ft_intlen(long n)
{
uint8_t len;
len = 0;
if (!n)
return (1);
if (n < 0)
len = 1;
while (n != 0)
{
n /= 10;
len++;
}
return (len);
}
|