-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
32 lines (29 loc) · 1.12 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aymoulou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/09 14:35:45 by aymoulou #+# #+# */
/* Updated: 2021/09/25 13:14:20 by aymoulou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
unsigned int a;
a = n;
if (n < 0)
{
ft_putchar_fd('-', fd);
a = -n;
}
if (a > 9)
{
ft_putnbr_fd((a / 10), fd);
ft_putchar_fd((a % 10) + '0', fd);
}
else
ft_putchar_fd(a + '0', fd);
}