libft_old/extended_libft/ft_putnbr.c
Willem Haffmans 326f52308e all
2024-07-26 22:32:04 +02:00

19 lines
959 B
C

/* ************************************************************************** */
/* */
/* ::: o_ :::::: ::: */
/* ft_putnbr.c :+: / :+::+: :+: */
/* +:+ > +:++:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#++#++:++#++ */
/* +#+ +#+#+ +#++#+ +#+ \o/ */
/* Created: 2024/07/26 21:32:30 by whaffman #+#+# #+#+# #+# #+# | */
/* Updated: 2024/07/26 21:37:17 by whaffman ### ### ### ### / \ */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr(int n)
{
ft_putnbr_fd(n, 1);
}