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

22{
23 if (s)
24 {
25 ft_putstr_fd(s, fd);
26 ft_putchar_fd('\n', fd);
27 }
28}
void ft_putchar_fd(char c, int fd)
void ft_putstr_fd(char *s, int fd)

References ft_putchar_fd(), and ft_putstr_fd().

Referenced by builtin_export(), builtin_pwd(), ft_puterror(), and handle_exit().

Here is the call graph for this function:
Here is the caller graph for this function: