19 lines
1002 B
C
19 lines
1002 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_vprintf.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/10/07 01:05:23 by cchauvet #+# #+# */
|
|
/* Updated: 2022/10/10 18:12:44 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "printf.h"
|
|
|
|
int ft_vprintf(const char *format, va_list va)
|
|
{
|
|
return (ft_vdprintf(1, format, va));
|
|
}
|