/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/17 16:48:37 by adjoly #+# #+# */ /* Updated: 2023/11/17 17:32:54 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "libftprintf.h" #include int ft_printf(const char *format, ...) { va_list args; va_start(args, format); }