From eb0678367c5cb09b43423f77d6f1c3063fae9a91 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 17 Feb 2020 03:36:53 +0100 Subject: Added ft_lstlsearch and ft_lstlfind for ht manipulation --- include/libft_ht.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/libft_ht.h') diff --git a/include/libft_ht.h b/include/libft_ht.h index 0873e7d..ba1b3bb 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/16 02:23:06 by cacharle ### ########.fr */ +/* Updated: 2020/02/17 03:06:32 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); -int ft_inter_htkey_equal(const void *ref_key, +int ft_inter_htkey_cmp(const void *ref_key, const void *content); #endif -- cgit