aboutsummaryrefslogtreecommitdiff
path: root/include/libft_ht.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libft_ht.h')
-rw-r--r--include/libft_ht.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libft_ht.h b/include/libft_ht.h
index 8551ddb..8eda59c 100644
--- a/include/libft_ht.h
+++ b/include/libft_ht.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/31 10:36:09 by cacharle #+# #+# */
-/* Updated: 2020/01/31 10:41:24 by cacharle ### ########.fr */
+/* Updated: 2020/02/14 02:14:57 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -38,7 +38,7 @@ t_ftht *ft_htnew(t_ftsize size);
void ft_htdestroy(t_ftht *ht, void (*del)(t_ftht_content*));
void ft_htdestroy_all(t_ftht *ht);
void ft_htdestroy_key(t_ftht *ht);
-t_ftht_content *ft_htget(t_ftht *ht, char *key);
+void *ft_htget(t_ftht *ht, char *key);
t_ftht_content *ft_htset(t_ftht *ht, char *key, void *value);
void ft_htdelone(t_ftht *ht, char *key,
void (*del)(t_ftht_content*));