21 lines
1.0 KiB
C
21 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* executor.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: willem <willem@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/08 17:06:07 by willem #+# #+# */
|
|
/* Updated: 2025/02/11 17:06:54 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef EXECUTOR_H
|
|
# define EXECUTOR_H
|
|
|
|
# include "minishell.h"
|
|
|
|
char *executor_absolute_path(t_list *env, char *cmd);
|
|
|
|
#endif // EXECUTOR_H
|