-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
34 lines (31 loc) · 1.13 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: luciehdr <luciehdr@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/16 17:56:55 by luciehdr #+# #+# */
/* Updated: 2020/11/16 17:56:55 by luciehdr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
int res;
unsigned int nb;
if (n < 0)
{
ft_putchar_fd('-', fd);
n *= -1;
}
nb = n;
res = 0;
if (nb > 9)
{
ft_putnbr_fd(nb / 10, fd);
}
res = nb % 10;
res = res + '0';
ft_putchar_fd(res, fd);
}