minishell
ft_putendl_fd.c File Reference
#include "ft_put.h"
Include dependency graph for ft_putendl_fd.c:

Go to the source code of this file.

Functions

void ft_putendl_fd (char *s, int fd)
 

Function Documentation

◆ ft_putendl_fd()

void ft_putendl_fd ( char *  s,
int  fd 
)

Definition at line 15 of file ft_putendl_fd.c.

16 {
17  ft_putstr_fd(s, fd);
18  ft_putchar_fd('\n', fd);
19 }
void ft_putchar_fd(char c, int fd)
Definition: ft_putchar_fd.c:16
void ft_putstr_fd(char *s, int fd)
Definition: ft_putstr_fd.c:17
Here is the call graph for this function:
Here is the caller graph for this function: