-
Notifications
You must be signed in to change notification settings - Fork 4
/
ft_putchar_fd.c
20 lines (17 loc) · 991 Bytes
/
ft_putchar_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aalvarez <aalvarez@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/26 00:13:12 by aalvarez #+# #+# */
/* Updated: 2024/06/26 00:13:27 by aalvarez ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include "libft.h"
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, 1);
}