ft_putnbr_fd
This commit is contained in:
18
ft_putnbr_fd.c
Normal file
18
ft_putnbr_fd.c
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user