-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr_fd.c
30 lines (27 loc) · 1.11 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_putnbr_fd.c :+: :+: */
/* +:+ */
/* By: splattje <splattje@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2023/10/23 17:22:15 by splattje #+# #+# */
/* Updated: 2023/10/24 09:30:57 by splattje ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
int sign;
char c;
sign = 1;
if (n < 0)
{
ft_putchar_fd('-', fd);
sign = -1;
}
if (n / 10)
ft_putnbr_fd(n / 10 * sign, fd);
c = '0' + n % 10 * sign;
ft_putchar_fd(c, fd);
}