properly started project

This commit is contained in:
Tanguy MAZE
2019-02-07 17:12:52 +01:00
parent 46ae7b6694
commit 74b3f069bc
11 changed files with 204 additions and 361 deletions

21
srcs/ft_printf.c~ Normal file
View File

@@ -0,0 +1,21 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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();
}