minishell
ft_putchar_fd.c File Reference
#include <unistd.h>
#include "ft_put.h"
Include dependency graph for ft_putchar_fd.c:

Go to the source code of this file.

Functions

void ft_putchar_fd (char c, int fd)
 

Function Documentation

◆ ft_putchar_fd()

void ft_putchar_fd ( char  c,
int  fd 
)

Definition at line 16 of file ft_putchar_fd.c.

17 {
18  write(fd, &c, 1);
19 }
Here is the caller graph for this function: