42_C_PISCINE/Rush/Rush00/ex00/ft_putchar.c

21 lines
985 B
C
Raw Permalink Normal View History

2023-05-17 12:45:25 -04:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mchedota <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/15 18:08:06 by mchedota #+# #+# */
/* Updated: 2022/07/16 09:56:02 by mchedota ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putchar(char c);
void ft_putchar(char c)
{
write(1, &c, 1);
}