-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr_fd.c
38 lines (34 loc) · 1.23 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_putnbr_fd.c :+: :+: */
/* +:+ */
/* By: kgajadie <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/11/22 13:12:26 by kgajadie #+# #+# */
/* Updated: 2021/03/04 20:27:04 by kawish ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
/* Outputs the integer ’n’ to the given filedescriptor */
void ft_putnbr_fd(int n, int fd)
{
char c;
if (n == -2147483648)
{
write(fd, "-", 1);
write(fd, "2147483648", 10);
return ;
}
else if (n < 0)
{
n = n * -1;
write(fd, "-", 1);
}
if (n > 9)
{
ft_putnbr_fd(n / 10, fd);
}
c = ((n % 10) + '0');
write(fd, &c, 1);
}