/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/03 14:57:37 by jhalford #+# #+# */ /* Updated: 2016/11/04 13:11:49 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_putchar(int c) { write(1, &c, 1); return (0); }