include/ft_putchar.h

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

19
include/ft_putchar.h Normal file
View File

@ -0,0 +1,19 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 <unistd.h>
void ft_putchar(char c);
#endif