-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
34 lines (31 loc) · 1.14 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: youel-id <youel-id@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/17 12:30:10 by youel-id #+# #+# */
/* Updated: 2022/10/28 17:20:56 by youel-id ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
long int i;
i = (long int)n;
if (i < 0)
{
i *= -1;
ft_putchar_fd('-', fd);
}
if (i > 9)
{
ft_putnbr_fd(i / 10, fd);
ft_putnbr_fd(i % 10, fd);
}
if (i >= 0 && i <= 9)
{
ft_putchar_fd(i + 48, fd);
}
}