-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
40 lines (37 loc) · 1.22 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
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erli <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/08 10:17:23 by erli #+# #+# */
/* Updated: 2018/11/08 14:58:05 by erli ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putnbr_fd(int nb, int fd)
{
char c;
int pow;
if (nb == -2147483648)
write(fd, "-2147483648", 11);
else
{
pow = 1;
if (nb < 0)
{
pow = -1;
write(fd, "-", 1);
}
while (nb / pow >= 10)
pow *= 10;
while (pow != 0)
{
c = nb / pow + 48;
write(fd, &c, 1);
nb = nb % pow;
pow /= 10;
}
}
}