-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putnbr_fd.c
40 lines (37 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
33
34
35
36
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: deryacar <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/12 21:31:31 by deryacar #+# #+# */
/* Updated: 2023/12/04 20:39:12 by deryacar ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <unistd.h>
void ft_putnbr_fd(int n, int fd)
{
long int nb;
char c;
if (fd < 0)
return ;
nb = n;
if (nb < 0)
{
write (fd, "-", 1);
nb *= -1;
}
if (nb < 10)
{
c = nb + '0';
write(fd, &c, 1);
}
else
{
ft_putnbr_fd((nb / 10), fd);
c = nb % 10 + '0';
write(fd, &c, 1);
}
}