-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_vprintf.c
18 lines (16 loc) · 1007 Bytes
/
ft_vprintf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_vprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/28 14:41:12 by gmelisan #+# #+# */
/* Updated: 2019/01/28 14:41:21 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_vprintf(const char *format, va_list ap)
{
return (ft_vfdprintf(1, format, ap));
}