22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* simple_builtins.c :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/05 16:21:39 by whaffman #+# #+# */
|
|
/* Updated: 2025/02/26 14:42:54 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
void simple_builtins(t_minishell *minishell)
|
|
{
|
|
if (minishell->commands == NULL)
|
|
return ;
|
|
if (!builtin_router(minishell, minishell->commands->content))
|
|
executor_execute_pipeline(minishell);
|
|
}
|