/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_putchar_fd.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/13 08:27:19 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:49:34 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include int ft_putchar_fd(char c, int fd) { return (write(fd, &c, 1)); }