/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jtorrez- +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 20:27:12 by jtorrez- #+# #+# */ /* Updated: 2023/03/19 14:24:09 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #include // Display one ASCII char on standard output. void ft_putchar(char c) { write(1, &c, 1); }