From 62afe606a355581c5b48cca361478c43fb6ae4cf Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Sun, 19 Apr 2020 22:27:11 +0200 Subject: Well well well that wasn't too bad, now remake everything --- libft/src/ft_uintlen_base.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libft/src/ft_uintlen_base.c (limited to 'libft/src/ft_uintlen_base.c') diff --git a/libft/src/ft_uintlen_base.c b/libft/src/ft_uintlen_base.c new file mode 100644 index 0000000..ba96a29 --- /dev/null +++ b/libft/src/ft_uintlen_base.c @@ -0,0 +1,32 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_uintlen_base.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:07:17 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:07:17 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include +#include + +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); +} -- cgit v1.2.3