/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* cmd_unsetenv.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tmaze +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/09/20 14:42:01 by tmaze #+# #+# */ /* Updated: 2019/09/26 15:27:17 by tmaze ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int cmd_unsetenv(char** argv, t_env** env) { (void)argv; (void)env; return (0); }