29 lines
1.2 KiB
C
29 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* exec_if.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/02/06 18:07:31 by ariard #+# #+# */
|
|
/* Updated: 2017/03/06 19:37:20 by ariard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int exec_case(t_btree **ast)
|
|
{
|
|
t_astnode *node;
|
|
char **av;
|
|
t_exec *exec;
|
|
|
|
(void)ast;
|
|
exec = &data_singleton()->exec;
|
|
exec->attrs &= ~EXEC_CASE_BRANCH;
|
|
|
|
node = (*ast)->item;
|
|
av = token_to_argv(node->data.cmd.wordlist, 1);
|
|
exec->case_pattern = av;
|
|
return (0);
|
|
}
|