Files
minishell/libft/ft_putchar_fd.c
2024-02-02 23:05:45 +01:00

18 lines
969 B
C
Executable File

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 04:10:53 by tomoron #+# #+# */
/* Updated: 2023/11/01 14:27:29 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, 1);
}