19 lines
981 B
C
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));
|
||
|
}
|