-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr_fd.c
36 lines (32 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mbouderr <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/27 02:41:40 by mbouderr #+# #+# */
/* Updated: 2022/10/28 03:30:53 by mbouderr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <fcntl.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);
}
}