-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putnbr_fd.c
More file actions
34 lines (31 loc) · 1.12 KB
/
ft_putnbr_fd.c
File metadata and controls
34 lines (31 loc) · 1.12 KB
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
29
30
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: eagoumi <eagoumi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/19 02:04:42 by eagoumi #+# #+# */
/* Updated: 2022/11/08 20:30:21 by eagoumi ### ########.fr */
/* */
/* ************************************************************************** */
#include "./libft.h"
void ft_putnbr_fd(int n, int fd)
{
long nb;
nb = n;
if (nb < 0)
{
write(fd, "-", 1);
nb = nb * -1;
}
if (nb >= 10)
{
ft_putnbr_fd(nb / 10, fd);
ft_putnbr_fd(nb % 10, fd);
}
else
{
ft_putchar_fd(nb + '0', fd);
}
}