aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_uintlen_base.c
blob: ec680577106b75bed811857da33b552229c7e298 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_uintlen_base.c                                  :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: joelecle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:07:17 by joelecle          #+#    #+#             */
/*   Updated: 2020/02/14 17:07:17 by joelecle         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

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

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

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