1
0
libft_new/print/ft_putnbr.c
2024-02-04 15:11:02 +01:00

19 lines
962 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 11:14:22 by adjoly #+# #+# */
/* Updated: 2024/02/04 14:41:11 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_putnbr(int n)
{
ft_putnbr_fd(n, 1);
}