aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_intlen_base.c
blob: c43c096d1c819d80bc00efaeaff3af56204cb394 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_intlen_base.c                                   :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: joelecle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:06:39 by joelecle          #+#    #+#             */
/*   Updated: 2020/02/14 17:06:39 by joelecle         ###   ########lyon.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);
}