From 6ac62e6a7d423f5035a2b1d8a8d76a5444f6527f Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Sun, 19 Mar 2023 02:14:59 +0100 Subject: [PATCH] include/ft_putchar.h --- include/ft_putchar.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/ft_putchar.h diff --git a/include/ft_putchar.h b/include/ft_putchar.h new file mode 100644 index 0000000..5fac4f2 --- /dev/null +++ b/include/ft_putchar.h @@ -0,0 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_putchar.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tischmid +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/03/19 00:50:27 by tischmid #+# #+# */ +/* Updated: 2023/03/19 00:52:04 by tischmid ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef FT_PUTCHAR_H +# define FT_PUTCHAR_H +# include + +void ft_putchar(char c); + +#endif