-
Notifications
You must be signed in to change notification settings - Fork 2
/
ft_putnbr_fd.c
32 lines (28 loc) · 1.19 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: adiaz-lo <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/13 12:04:43 by adiaz-lo #+# #+# */
/* Updated: 2020/01/13 12:15:42 by adiaz-lo ### ########.fr */
/* */
/* ************************************************************************** */
/*
** This function outputs the integer 'n' to given file descriptor 'fd'.
*/
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
unsigned int aux;
aux = n;
if (n < 0)
{
ft_putchar_fd('-', fd);
aux = (unsigned int)(n * -1);
}
if (aux > 9)
ft_putnbr_fd(aux / 10, fd);
ft_putchar_fd((char)(aux % 10 + '0'), fd);
}