-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
30 lines (27 loc) · 1.11 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: raqferre <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/17 14:42:54 by raqferre #+# #+# */
/* Updated: 2022/07/06 11:38:50 by raqferre ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
long out;
out = (long) n;
if (out < 0)
{
ft_putchar_fd('-', fd);
out = out * -1;
}
if (out / 10)
{
ft_putnbr_fd((out / 10), fd);
}
ft_putchar_fd((out % 10 + 48), fd);
}