42-archive/42sh/src/exec/plaunch_brace.c
2017-03-17 20:45:27 +01:00

19 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* plaunch_brace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/13 19:09:30 by jhalford #+# #+# */
/* Updated: 2017/03/17 20:35:24 by wescande ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
int plaunch_brace(t_process *p)
{
ft_exec(&p->data.brace.content);
return (ft_atoi(ft_getenv(data_singleton()->env, "?")));
}