-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_vprintf.c
executable file
·23 lines (20 loc) · 1.09 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
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_vprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/25 21:40:57 by akharrou #+# #+# */
/* Updated: 2019/05/08 09:08:04 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "../Includes/macros_42.h"
#include "../Includes/ft_printf.h"
/*
** Reproduction of the libc 'vprintf()' function.
*/
int ft_vprintf(const char *format, va_list *args)
{
return (ft_vdprintf(STDOUT, format, args));
}