2024-04-26 13:54:10 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* minishell.h :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2024/04/26 09:38:51 by mmoussou #+# #+# */
|
2024-04-29 13:55:21 +02:00
|
|
|
/* Updated: 2024/04/29 13:21:45 by mmoussou ### ########.fr */
|
2024-04-26 13:54:10 +02:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#ifndef MINISHELL_H
|
|
|
|
# define MINISHELL_H
|
|
|
|
|
2024-04-29 13:06:19 +02:00
|
|
|
# include "parsing.h"
|
2024-04-29 13:55:21 +02:00
|
|
|
# include "execution.h"
|
2024-04-29 13:06:19 +02:00
|
|
|
|
2024-04-26 13:54:10 +02:00
|
|
|
# include <readline/readline.h>
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include "libft.h"
|
|
|
|
|
2024-04-29 13:06:19 +02:00
|
|
|
char set_env(char **env, const char *name, char *content);
|
2024-04-26 13:54:10 +02:00
|
|
|
|
|
|
|
#endif
|