piscine-rush00-ultra/ex00/include/ft_putchar.h

20 lines
990 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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