summaryrefslogtreecommitdiffstats
path: root/src/s_destroy.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/s_destroy.c (renamed from src/ft_s_destroy.c)10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ft_s_destroy.c b/src/s_destroy.c
index 22009c8..f9d56eb 100644
--- a/src/ft_s_destroy.c
+++ b/src/s_destroy.c
@@ -1,7 +1,7 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
-/* ft_s_destroy.c :+: :+: :+: */
+/* s_destroy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
@@ -12,17 +12,17 @@
#include <libft.h>
-#include "ft_s_destroy.h"
-#include "ft_s_lvars.h"
+#include "s_destroy.h"
+#include "s_lvars.h"
void
- ft_s_destroy(t_msh *msh)
+ s_destroy(t_msh *msh)
{
ft_memdel((void*)&msh->ps_one);
ft_memdel((void*)&msh->cwd);
ft_memdel((void*)&msh->shname);
ft_delwords(msh->bu_ref);
ft_delwords(msh->envp);
- ft_lvars_clear(&msh->vars);
+ lvars_clear(&msh->vars);
ft_memdel((void*)&msh);
}