pushswap/printf/libft/src/ft_putchar_fd.c
2023-03-07 05:42:47 +01: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/02/07 00:40:42 by houtworm ### ########.fr */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, sizeof(c));
}