-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr.c
19 lines (17 loc) · 1.02 KB
/
ft_putnbr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putnbr.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rcabotia <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/10/03 18:19:28 by rcabotia #+# ## ## #+# */
/* Updated: 2018/10/10 16:14:58 by rcabotia ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr(int n)
{
ft_putnbr_fd(n, 1);
}