-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
32 lines (29 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dskrypny <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/18 17:51:06 by dskrypny #+# #+# */
/* Updated: 2017/11/22 19:42:03 by dskrypny ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
long res;
res = (long)n;
if (res < 0)
{
ft_putchar_fd('-', fd);
res = -res;
}
if (res > 10)
{
ft_putnbr_fd(res / 10, fd);
ft_putnbr_fd(res % 10, fd);
}
else
ft_putchar_fd(res + '0', fd);
}