Archived
1
0

starting...

This commit is contained in:
2023-11-17 19:11:35 +01:00
parent 28285129f0
commit fe1555a4eb
2 changed files with 43 additions and 0 deletions

22
ft_printf.c Normal file
View File

@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/17 16:48:37 by adjoly #+# #+# */
/* Updated: 2023/11/17 17:32:54 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include <stdarg.h>
int ft_printf(const char *format, ...)
{
va_list args;
va_start(args, format);
}

21
libftprintf.h Normal file
View File

@ -0,0 +1,21 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libftprintf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/17 16:50:36 by adjoly #+# #+# */
/* Updated: 2023/11/17 16:57:31 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFTPRINTF_H
# define LIBFTPRINTF_H
# include <stdlib.h>
# include <stdarg.h>
int ft_printf(const char *format, ...);
#endif