From ac0559db82bfef3b7ca3d976b1d7700ed2c1c1fc Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 31 Jan 2020 10:44:30 +0100 Subject: hash table unit testing, norming --- include/libft_printf.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'include/libft_printf.h') diff --git a/include/libft_printf.h b/include/libft_printf.h index 1200478..8e64208 100644 --- a/include/libft_printf.h +++ b/include/libft_printf.h @@ -1,6 +1,17 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* libft_printf.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/01/31 10:36:47 by cacharle #+# #+# */ +/* Updated: 2020/01/31 10:36:51 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ -#ifndef FT_PRINTF_H -# define FT_PRINTF_H +#ifndef LIBFT_PRINTF_H +# define LIBFT_PRINTF_H int ft_printf(const char *format, ...); int ft_sprintf(char *str, const char *format, ...); -- cgit