/ ft_putchar.c
ft_putchar.c
1 /* ************************************************************************** */ 2 /* */ 3 /* ::: :::::::: */ 4 /* ft_putchar.c :+: :+: :+: */ 5 /* +:+ +:+ +:+ */ 6 /* By: lfiorell <lfiorell@student.42nice.fr> +#+ +:+ +#+ */ 7 /* +#+#+#+#+#+ +#+ */ 8 /* Created: 2024/07/19 18:57:52 by lfiorell #+# #+# */ 9 /* Updated: 2024/07/19 18:57:55 by lfiorell ### ########.fr */ 10 /* */ 11 /* ************************************************************************** */ 12 13 #include <unistd.h> 14 15 /* 16 * This function prints the character c to stdout. 17 */ 18 void ft_putchar(char c) 19 { 20 write(1, &c, 1); 21 }