/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:06:57 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:06:57 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include int ft_putchar_fd(char c, int fd) { return (write(fd, &c, 1)); }