From 01b4cc91d1596cf94d709a627ed8ad64bc1e285d Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 16 Feb 2020 04:51:41 +0100 Subject: Filled lst* tests --- include/libft_ht.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/libft_ht.h') diff --git a/include/libft_ht.h b/include/libft_ht.h index 8eda59c..0873e7d 100644 --- a/include/libft_ht.h +++ b/include/libft_ht.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:36:09 by cacharle #+# #+# */ -/* Updated: 2020/02/14 02:14:57 by cacharle ### ########.fr */ +/* Updated: 2020/02/16 02:23:06 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -50,7 +50,7 @@ t_ftht_content *ft_htcontent_new(char *key, void *value); */ void ft_inter_htdelcontent_key(t_ftht_content *content); -t_ftbool ft_inter_htkey_equal(char *ref_key, - t_ftht_content *content); +int ft_inter_htkey_equal(const void *ref_key, + const void *content); #endif -- cgit