Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
ft_printf/ft_printf.c
2023-11-17 19:11:35 +01:00

23 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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);
}