-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
29 lines (26 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: younhwan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/08 15:56:05 by younhwan #+# #+# */
/* Updated: 2022/07/10 22:04:56 by younhwan ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
long num;
num = (long) n;
if (num < 0)
{
ft_putchar_fd('-', fd);
num *= -1;
}
if (10 <= num)
ft_putnbr_fd(num / 10, fd);
ft_putchar_fd('0' + (num % 10), fd);
return ;
}