ft_putnbr

This commit is contained in:
Tanguy MAZE
2018-04-08 13:00:29 +02:00
parent 4915727f74
commit 11d8cfcdcf
2 changed files with 20 additions and 2 deletions

18
ft_putnbr.c Normal file
View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 12:52:53 by tmaze #+# #+# */
/* Updated: 2018/04/08 12:54:35 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr(int n)
{
ft_putstr(ft_itoa(n));
}