-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printnbr.c
19 lines (17 loc) · 998 Bytes
/
ft_printnbr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: wdelaros <wdelaros@student.42quebec.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/30 09:12:48 by wdelaros #+# #+# */
/* Updated: 2022/11/07 12:17:45 by wdelaros ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_printnbr(int nbr)
{
ft_putnbr_fd(nbr, 1);
return (ft_intlen(nbr, 10));
}