/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/14 12:38:59 by thrieg #+# #+# */ /* Updated: 2025/02/16 19:08:20 by thrieg ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_PRINTF_H # define FT_PRINTF_H # include # include "../ft_vector.h" int ft_printf(const char *format, ...); int ft_dprintf(int fd, const char *format, ...); #endif