/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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 /* ** 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