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