-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr_fd.c
46 lines (42 loc) · 1.33 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
41
42
43
44
45
46
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: masoares <masoares@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/07 14:38:08 by masoares #+# #+# */
/* Updated: 2023/10/08 10:56:41 by masoares ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr_fd(int n, int fd)
{
char c;
long num;
num = n;
if (num < 0)
{
num = num * (-1);
write (fd, "-", 1);
}
if (num <= 9)
{
c = num + '0';
write (fd, &c, 1);
}
else
{
ft_putnbr_fd(num / 10, fd);
ft_putnbr_fd(num % 10, fd);
}
}
/*
#include <fcntl.h>
int main (void)
{
int fd;
fd = open("test", O_RDWR | O_TRUNC | O_CREAT, S_IRWXU);
ft_putnbr_fd(-19358497, fd);
close(fd);
}*/