-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_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: juhagon <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/04 16:07:28 by juhagon #+# #+# */
/* Updated: 2022/01/25 09:56:27 by juhagon ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int i, int fd)
{
long x;
x = i;
if (x < 0)
{
ft_putchar_fd('-', fd);
x = -x;
}
if (x < 10)
ft_putchar_fd(x + '0', fd);
else if (x > 0)
{
ft_putnbr_fd(x / 10, fd);
ft_putchar_fd(x % 10 + '0', fd);
}
}