maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
ft_putchar_fd.c File Reference
#include "libft.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 20 of file ft_putchar_fd.c.

21{
22 write(fd, &c, 1);
23}

Referenced by ft_print_char(), ft_print_percent(), ft_print_str(), ft_print_unsigned_hex(), ft_put_hex(), ft_put_ptr(), ft_putendl_fd(), and ft_putnbr_fd().

Here is the caller graph for this function: