-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
41 lines (38 loc) · 1.21 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
41
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pmaimait <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/11 15:38:17 by pmaimait #+# #+# */
/* Updated: 2022/05/11 15:38:50 by pmaimait ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <unistd.h>
void ft_putnbr_fd(int n, int fd)
{
unsigned int nb;
if (n < 0)
{
ft_putchar_fd('-', fd);
nb = -n;
}
else
{
nb = n;
}
if (nb > 9)
{
ft_putnbr_fd(nb / 10, fd);
ft_putnbr_fd(nb % 10, fd);
}
else
{
if (n > 0)
ft_putchar_fd(n + '0', fd);
else
ft_putchar_fd('0' - n, fd);
}
}