libft
ft_putnbr.c
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* ft_putnbr.c :+: :+: :+: */
6 /* +:+ +:+ +:+ */
7 /* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8 /* +#+#+#+#+#+ +#+ */
9 /* Created: 2019/09/05 14:55:46 by unite #+# #+# */
10 /* Updated: 2020/07/16 02:54:02 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
14 #include "libft.h"
15 
21 void ft_putnbr(int n)
22 {
23  ft_putnbr_fd(n, 1);
24 }
ft_putnbr_fd
void ft_putnbr_fd(int n, int fd)
Writes an integer to a file descriptor.
Definition: ft_putnbr_fd.c:23
ft_putnbr
void ft_putnbr(int n)
Writes an integer to the standard output.
Definition: ft_putnbr.c:21
libft.h