35 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/26 09:38:51 by mmoussou #+# #+# */
/* Updated: 2024/04/29 13:02:46 by mmoussou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
# include "parsing.h"
# include <readline/readline.h>
# include <stdio.h>
# include <stdlib.h>
# include "libft.h"
typedef struct s_env
{
char *name;
char *content;
struct s_env *next;
} t_env;
//
char set_env(char **env, const char *name, char *content);
#endif