-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_int_putchar_fd.c
19 lines (17 loc) · 990 Bytes
/
ft_int_putchar_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_int_putchar_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gyong-si <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/28 09:55:03 by gyong-si #+# #+# */
/* Updated: 2023/09/29 14:33:41 by gyong-si ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_int_putchar_fd(char c, int fd)
{
write(fd, &c, 1);
return (1);
}