/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 12:03:12 by scebula #+# #+# */ /* Updated: 2015/11/26 12:06:37 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putchar(char c) { write(1, &c, 1); }