-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_intlen.c
executable file
·18 lines (16 loc) · 992 Bytes
/
ft_intlen.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_intlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/19 08:30:24 by akharrou #+# #+# */
/* Updated: 2019/04/21 23:55:28 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "../Includes/stdlib_42.h"
size_t ft_intlen(int n)
{
return (ft_intmaxlen_base(n, 10));
}