blob: b240f43c755828553b1812a69b47ef69cefcf05e (
plain)
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
33
34
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putnbr_fd.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/13 08:57:19 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 12:13:09 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void
ft_putnbr_fd(int n, int fd)
{
unsigned int i;
i = n;
if (n < 0)
{
ft_putchar_fd('-', fd);
i = -n;
}
if (i > 9)
{
ft_putnbr_fd(i / 10, fd);
ft_putchar_fd((i % 10) + 48, fd);
}
else
ft_putchar_fd(i + 48, fd);
}
|