-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
28 lines (25 loc) · 1.08 KB
/
ft_putnbr_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edboutil <edboutil@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/17 20:09:56 by edboutil #+# #+# */
/* Updated: 2022/11/25 14:13:50 by edboutil ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
unsigned int nb;
nb = n;
if (n < 0)
{
ft_putchar_fd('-', fd);
nb = -n;
}
if (nb > 9)
ft_putnbr_fd(nb / 10, fd);
ft_putchar_fd((nb % 10) + '0', fd);
}