/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/25 16:39:02 by bchanot #+# #+# */ /* Updated: 2016/11/02 13:56:35 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" #include int ft_putchar_fd(int c, int fd) { write(fd, &c, 1); return (1); } int ft_putchar(int c) { write(1, &c, 1); return (1); }