ft_putnbr_fd

This commit is contained in:
Tanguy MAZE
2018-04-08 13:07:01 +02:00
parent 6bfe4591b0
commit ff9d5ebbb5
2 changed files with 20 additions and 2 deletions

18
ft_putnbr_fd.c Normal file
View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 13:05:24 by tmaze #+# #+# */
/* Updated: 2018/04/08 13:06:15 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
ft_putstr_fd(ft_itoa(n), fd);
}