Files
minishell/include/executor.h
2025-10-29 20:57:15 +01:00

27 lines
1.3 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* executor.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sede-san <sede-san@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/28 13:08:33 by sede-san #+# #+# */
/* Updated: 2025/10/28 14:20:23 by sede-san ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef EXECUTOR_H
# define EXECUTOR_H
# include "minishell.h"
/******************************************************************************/
/* Functions */
/******************************************************************************/
// executor.c
extern u_int8_t execute(t_command command, t_minishell *minishell);
#endif /* EXECUTOR_H */