ft_putchar_fd: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-18 14:30:13 +02:00
parent 6a186f7527
commit 28cadf55f1
3 changed files with 31 additions and 2 deletions

26
ft_putchar_fd.c Normal file
View file

@ -0,0 +1,26 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/18 12:13:05 by kcolin #+# #+# */
/* Updated: 2024/10/18 14:06:11 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, 1);
}
/*
int main(void)
{
ft_putchar_fd('c', 1);
return (0);
}
*/