/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* s_destroy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include "s_destroy.h" #include "s_lvars.h" void s_destroy(t_msh *msh) { ft_memdel((void*)&msh->shname); ft_memdel((void*)&msh->cwd); ft_delwords(msh->bu_ref); ft_delwords(msh->envp); lvars_clear(&msh->vars); ft_memdel((void*)&msh); }