From 941099778b59da6b904c284e8a82affe4766124b Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 30 Mar 2020 22:27:16 +0200 Subject: Added doc --- src/util.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/util.c (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c deleted file mode 100644 index 188b762..0000000 --- a/src/util.c +++ /dev/null @@ -1,26 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* util.c :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: cacharle +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/28 11:56:31 by cacharle #+# #+# */ -/* Updated: 2020/02/28 11:57:30 by cacharle ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#include "minishell.h" - -/* -** delete a hash table entry containing a allocated string key and value -*/ - -void ms_ht_del_str_entry(t_ftht_content *content) -{ - if (content == NULL) - return ; - free(content->key); - free(content->value); - free(content); -} -- cgit