Norminetted ft_putchar.c

This commit is contained in:
Timo Schmidt 2023-03-15 21:48:08 +01:00
parent ecf5f85216
commit dec94a9a15
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/15 21:34:53 by tischmid #+# #+# */
/* Updated: 2023/03/15 21:46:57 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}