diff options
Diffstat (limited to 'libft/src/ft_intlen_base.c')
-rw-r--r-- | libft/src/ft_intlen_base.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/libft/src/ft_intlen_base.c b/libft/src/ft_intlen_base.c index 9de740c..47da31d 100644 --- a/libft/src/ft_intlen_base.c +++ b/libft/src/ft_intlen_base.c @@ -1,21 +1,20 @@ /* ************************************************************************** */ -/* LE - / */ -/* / */ -/* ft_intlen_base.c .:: .:/ . .:: */ -/* +:+:+ +: +: +:+:+ */ -/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */ -/* #+# #+ #+ #+# */ -/* Created: 2019/12/19 17:22:26 by rbousset #+# ## ## #+# */ -/* Updated: 2019/12/19 17:22:27 by rbousset ### #+. /#+ ###.fr */ -/* / */ -/* / */ +/* */ +/* ::: :::::::: */ +/* ft_intlen_base.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* */ /* ************************************************************************** */ #include <libft.h> #include <inttypes.h> uint8_t - ft_intlen_base(long long n, char *base) + ft_intlen_base(long n, char *base) { uint8_t len; uint8_t size; |