ft_putchar.c

This commit is contained in:
Timo Schmidt 2023-03-19 02:14:48 +01:00
parent 6bf7fad78e
commit cd6df4e27a
1 changed files with 18 additions and 0 deletions

18
ft_putchar.c Normal file
View File

@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/19 00:49:58 by tischmid #+# #+# */
/* Updated: 2023/03/19 01:03:52 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
#include "include/ft_putchar.h"
void ft_putchar(char c)
{
write(1, &c, 1);
}