26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_printf.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/02/27 12:07:47 by hulamy #+# #+# */
|
|
/* Updated: 2020/03/12 20:35:10 by hulamy ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_PRINTF_H
|
|
#define FT_PRINTF_H
|
|
#include <stdarg.h> // to use va_arg
|
|
|
|
/*
|
|
** ft_printf.c
|
|
*/
|
|
|
|
int ft_dprintf(int fd, const char *string, ...);
|
|
int ft_printf(const char *string, ...);
|
|
int ft_vdprintf(int fd, const char *string, va_list ap);
|
|
|
|
#endif
|