42_ft_printf/ft_vprintf.c
Camille Chauvet 780ac9ced3 init
2022-10-07 02:30:03 +02:00

19 lines
1018 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_vprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/07 01:05:23 by cchauvet #+# #+# */
/* Updated: 2022/10/07 01:43:58 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#include "libftprintf.h"
int ft_vprintf(const char *format, va_list va)
{
return (ft_strlen(ft_vdprintf(1, format, va)));
}