1
0
libft_new/print/ft_putnbr.c

19 lines
962 B
C
Raw Permalink Normal View History

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