aboutsummaryrefslogtreecommitdiff
path: root/src/ht/ft_htdelone_key.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-30 10:36:49 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-30 10:36:49 +0100
commitaa9613efb6fb39bd96fc4836b5d38c3746af1b15 (patch)
tree0fac2b661a860b3ca2e3effa868384290064f708 /src/ht/ft_htdelone_key.c
parentfe37597119353ce183fc404417b81bd4702f64b7 (diff)
downloadlibft-aa9613efb6fb39bd96fc4836b5d38c3746af1b15.tar.gz
libft-aa9613efb6fb39bd96fc4836b5d38c3746af1b15.tar.bz2
libft-aa9613efb6fb39bd96fc4836b5d38c3746af1b15.zip
hash table draft
Diffstat (limited to 'src/ht/ft_htdelone_key.c')
-rw-r--r--src/ht/ft_htdelone_key.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ht/ft_htdelone_key.c b/src/ht/ft_htdelone_key.c
new file mode 100644
index 0000000..5dc0c16
--- /dev/null
+++ b/src/ht/ft_htdelone_key.c
@@ -0,0 +1,18 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_htdelone_key.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/01/30 09:45:11 by cacharle #+# #+# */
+/* Updated: 2020/01/30 09:46:42 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "libft.h"
+
+void ft_htdelone_key(t_ftht *ht, char *key)
+{
+ ft_htdelone(ht, key, ft_inter_htdelcontent_key);
+}