」 feat: added include and header file

This commit is contained in:
y-syo
2024-04-26 13:54:10 +02:00
parent 44d1442585
commit 5abd93b950

23
include/minishell.h Normal file
View File

@ -0,0 +1,23 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/26 09:38:51 by mmoussou #+# #+# */
/* Updated: 2024/04/26 10:07:35 by mmoussou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
# include <readline/readline.h>
# include <stdio.h>
# include <stdlib.h>
# include "libft.h"
void get_env(char **env);
#endif