aboutsummaryrefslogtreecommitdiff
path: root/include/libft_ht.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-19 02:51:44 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-19 02:51:44 +0100
commit3c3f1115f6e9a9b914e2dcbd796501ca7ce85342 (patch)
tree29803aac5bd1fe039b9a8179e8c2a4f07e68ec82 /include/libft_ht.h
parent0362f55a094b5ec813d940b66f397abfa13fbe49 (diff)
downloadlibft-3c3f1115f6e9a9b914e2dcbd796501ca7ce85342.tar.gz
libft-3c3f1115f6e9a9b914e2dcbd796501ca7ce85342.tar.bz2
libft-3c3f1115f6e9a9b914e2dcbd796501ca7ce85342.zip
Tested ht*
Diffstat (limited to 'include/libft_ht.h')
-rw-r--r--include/libft_ht.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libft_ht.h b/include/libft_ht.h
index 3c5ef6f..62f2ee1 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/02/17 04:54:05 by cacharle ### ########.fr */
+/* Updated: 2020/02/19 02:38:28 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -39,7 +39,8 @@ 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);
void *ft_htget(t_ftht *ht, char *key);
-t_ftht_content *ft_htset(t_ftht *ht, char *key, void *value, void (*del)(void*));
+t_ftht_content *ft_htset(t_ftht *ht, char *key, void *value,
+ void (*del)(t_ftht_content*));
void ft_htdelone(t_ftht *ht, char *key,
void (*del)(t_ftht_content*));
void ft_htdelone_key(t_ftht *ht, char *key);