piscine-rush00/ft_putchar.c

20 lines
1004 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 20:27:12 by jtorrez- #+# #+# */
/* Updated: 2023/03/19 04:21:28 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
// Display an ASCII char on standard output.
void ft_putchar(char c)
{
write(1, &c, 1);
}