aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_intlen_base.c
blob: a590f3a09c8effa7c2a6a81a6206b67c6acbdc85 (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
33
34
35
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_intlen_base.c                                 .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/12/19 17:22:26 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/12/19 17:22:27 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <libft.h>
#include <inttypes.h>

uint8_t
	ft_intlen_base(long n, char *base)
{
	uint8_t	len;
	uint8_t	size;

	size = ft_strlen(base);
	len = 0;
	if (!n)
		return (1);
	if (n < 0)
		len = 1;
	while (n != 0)
	{
		n /= size;
		len++;
	}
	return (len);
}