|
Libft
Custom implementation of core libc functions with additional utility helpers.
|
Basic output functions. More...
Functions | |
| void | ft_putendl_fd (char *s, int fd) |
| Writes a string followed by newline to a file descriptor. | |
| void | ft_putnbr_fd (int n, int fd) |
| Writes an integer to a file descriptor. | |
| void | ft_putstr_fd (char *s, int fd) |
| Writes a string to a file descriptor. | |
Basic output functions.
Functions to write characters, strings and numbers to file descriptors.
| void ft_putendl_fd | ( | char * | s, |
| int | fd ) |
Writes a string followed by newline to a file descriptor.
| s | String to write (NULL prints "(null)"). |
| fd | File descriptor to write to. |

| void ft_putnbr_fd | ( | int | n, |
| int | fd ) |
Writes an integer to a file descriptor.
| n | Integer to write. |
| fd | File descriptor to write to. |

| void ft_putstr_fd | ( | char * | s, |
| int | fd ) |
Writes a string to a file descriptor.
| s | String to write (NULL prints "(null)"). |
| fd | File descriptor to write to. |
