27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* exec_reset.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/03/08 14:31:42 by jhalford #+# #+# */
|
|
/* Updated: 2017/03/27 00:33:31 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int exec_destroy(t_exec *exec)
|
|
{
|
|
t_jobc *jobc;
|
|
int i;
|
|
|
|
if (!exec)
|
|
return (0);
|
|
jobc = &data_singleton()->jobc;
|
|
ft_lstdel(&exec->op_stack, ft_lst_cfree);
|
|
ft_lstdel(&jobc->first_job, job_free);
|
|
i = -1;
|
|
return (0);
|
|
}
|