/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* unset.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 17:10:51 by charles #+# #+# */ /* Updated: 2020/04/01 17:10:51 by charles ### ########.fr */ /* */ /* ************************************************************************** */ /* ** \file unset.c ** \brief `unset` builtin */ #include "minishell.h" int builtin_unset(char **argv, t_env env) { if (argv[1] == NULL) return (1); ft_htdelone(env, argv[1], ht_del_str_entry); return (0); }