Libft
 
Loading...
Searching...
No Matches
ft_printf.h File Reference
#include "libft.h"
#include <stddef.h>
#include <unistd.h>
Include dependency graph for ft_printf.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int ft_printf (const char *str,...)
 Works similarly as printf without handling size format.
 
int ft_dprintf (int fd, const char *str,...)
 Works similarly as printf without handling size format.
 

Function Documentation

◆ ft_dprintf()

int ft_dprintf ( int fd,
const char * str,
... )

Works similarly as printf without handling size format.

Parameters
fdFile descriptor
strString to be printed
...Variadic arguments
Returns
int Returns the number of characters printed or -1 if error

◆ ft_printf()

int ft_printf ( const char * str,
... )

Works similarly as printf without handling size format.

Parameters
strString to be printed
...Variadic arguments
Returns
int Returns the number of characters printed or -1 if error