-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_hexlen.c
26 lines (23 loc) · 1.01 KB
/
ft_hexlen.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_hexlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lrocigno <lrocigno@student.42sp.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/30 21:26:59 by lrocigno #+# #+# */
/* Updated: 2021/10/28 11:43:33 by lrocigno ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_hexlen(unsigned int dn)
{
size_t x_sz;
x_sz = 1;
while (dn >= 16)
{
x_sz++;
dn /= 16;
}
return (x_sz);
}