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.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libft/src/ft_uintlen.c (limited to 'libft/src/ft_uintlen.c') diff --git a/libft/src/ft_uintlen.c b/libft/src/ft_uintlen.c new file mode 100644 index 0000000..da5be7b --- /dev/null +++ b/libft/src/ft_uintlen.c @@ -0,0 +1,29 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_uintlen.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:07:16 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:07:16 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include + +uint8_t + ft_uintlen(unsigned long n) +{ + uint8_t len; + + len = 0; + if (!n) + return (1); + while (n != 0) + { + n /= 10; + len++; + } + return (len); +} -- cgit v1.2.3