47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_ulltoa_base.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/11/07 13:07:50 by jhalford #+# #+# */
|
|
/* Updated: 2017/02/18 16:07:02 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
static size_t ft_size(unsigned long long n, int base)
|
|
{
|
|
size_t i;
|
|
|
|
i = 1;
|
|
while (n /= base)
|
|
i++;
|
|
return (i);
|
|
}
|
|
|
|
char *ft_ulltoa_base(unsigned long long nbr, char *base)
|
|
{
|
|
int i;
|
|
int base_size;
|
|
char *str;
|
|
|
|
i = 0;
|
|
base_size = ft_strlen(base);
|
|
str = ft_strnew(ft_size(nbr, base_size) + 1);
|
|
if (nbr == 0)
|
|
{
|
|
str[i++] = '0';
|
|
str[i] = '\0';
|
|
return (str);
|
|
}
|
|
while (nbr)
|
|
{
|
|
str[i++] = base[nbr % base_size];
|
|
nbr = nbr / base_size;
|
|
}
|
|
str[i] = '\0';
|
|
return (ft_strrev(str));
|
|
}
|