mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 11:26:51 +01:00
24 lines
1.0 KiB
C
24 lines
1.0 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* 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
|