libft
Loading...
Searching...
No Matches
ft_output.h
Go to the documentation of this file.
1
15#ifndef FT_OUTPUT_H
16#define FT_OUTPUT_H
17
35void ft_putchar_fd(char c, int fd);
36int ft_putstr_fd(char* str, int fd);
37void ft_putendl_fd(char* s, int fd);
38void ft_putnbr_fd(int n, int fd);
39
// end of file_output group
41
42#endif
void ft_putnbr_fd(int n, int fd)
Writes an integer to a file descriptor.
Definition ft_output.c:65
void ft_putchar_fd(char c, int fd)
Writes a single character to a file descriptor.
Definition ft_output.c:30
void ft_putendl_fd(char *s, int fd)
Writes a string followed by a newline to a file descriptor.
Definition ft_output.c:47
int ft_putstr_fd(char *str, int fd)
Writes a string to a file descriptor.
Definition ft_output.c:101