ft_printf/srcs/ft_printf.c~
2019-02-07 17:12:52 +01:00

22 lines
999 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/07 13:31:16 by tmaze #+# #+# */
/* Updated: 2019/02/07 13:34:43 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libftprintf.h"
int ft_printf(const char *format, ...)
{
va_list ap;
size_t i;
va_start();
}