properly started project
This commit is contained in:
21
srcs/ft_printf.c~
Normal file
21
srcs/ft_printf.c~
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user