-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_vprintf.c
22 lines (19 loc) · 1.05 KB
/
ft_vprintf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_vprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/25 21:40:57 by akharrou #+# #+# */
/* Updated: 2019/05/08 08:45:14 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
/*
** Reproduction of the libc 'vprintf()' function.
*/
int ft_vprintf(const char *format, va_list *args)
{
return (ft_vdprintf(STDOUT, format, args));
}