-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putll_nl.c
18 lines (16 loc) · 978 Bytes
/
ft_putll_nl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putll_nl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lduplain <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/12/14 15:14:04 by lduplain #+# #+# */
/* Updated: 2020/12/14 15:14:34 by lduplain ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putll_nl(long long number)
{
ft_putll_fdnl(1, number);
}