-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
37 lines (34 loc) · 1.2 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
29
30
31
32
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: salecler <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/15 20:28:56 by salecler #+# #+# */
/* Updated: 2022/06/16 02:10:41 by salecler ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int nb, int fd)
{
char c;
if (nb == -2147483648)
write(fd, "-2147483648", 11);
else if (nb < 0)
{
write(fd, "-", 1);
nb = -nb;
ft_putnbr_fd(nb, fd);
}
else if (nb > 9)
{
ft_putnbr_fd(nb / 10, fd);
ft_putnbr_fd(nb % 10, fd);
}
else
{
c = nb + '0';
write(fd, &c, 1);
}
}