20 lines
985 B
C
20 lines
985 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: o_ :::::: ::: */
|
|
/* ft_printf.c :+: / :+::+: :+: */
|
|
/* +:+ > +:++:+ +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#++#++:++#++ */
|
|
/* +#+ +#+#+ +#++#+ +#+ \o/ */
|
|
/* Created: 2024/10/11 14:49:07 by whaffman #+#+# #+#+# #+# #+# | */
|
|
/* Updated: 2024/10/15 12:43:16 by whaffman ### ### ### ### / \ */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdarg.h>
|
|
#include "libft.h"
|
|
|
|
int ft_printf(const char *str, ...)
|
|
{
|
|
return (0);
|
|
}
|