-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr.c
18 lines (16 loc) · 961 Bytes
/
ft_putnbr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jkwayiba <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/24 08:26:45 by jkwayiba #+# #+# */
/* Updated: 2019/05/28 12:55:40 by jkwayiba ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr(int nb)
{
ft_putnbr_fd(nb, 1);
}