|
Libft
Custom implementation of core libc functions with additional utility helpers.
|

Functions | |
| int | ft_vdprintf (int fd, const char *fstring, va_list args) |
| Writes formatted output to a file descriptor using va_list. | |
| int | ft_dprintf (int fd, const char *fstring,...) |
| Writes formatted output to a file descriptor. | |
| int | ft_vprintf (const char *fstring, va_list args) |
| Writes formatted output to stdout using va_list. | |
| int | ft_printf (const char *fstring,...) |
| Writes formatted output to stdout. | |