cub3d/libft/src/ft_putchar_fd.c
2023-10-26 19:11:30 +02:00

19 lines
981 B
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_putchar_fd.c :+: :+: */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/13 03:47:51 by djonker #+# #+# */
/* Updated: 2023/10/18 17:00:03 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, sizeof(c));
}