42_minishell/execution/execution.h
2023-03-10 12:32:39 +01:00

8 lines
113 B
C

#ifndef EXECUTION_H
# define EXECUTION_H
# include "../data/data.h"
int ft_cmds_executor(t_data *data);
#endif