31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* minishell.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/04 16:13:13 by whaffman #+# #+# */
|
|
/* Updated: 2025/02/04 18:58:01 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MINISHELL_H
|
|
# define MINISHELL_H
|
|
|
|
# define SUCCESS 1
|
|
# define FAILURE 0
|
|
|
|
# include "allowed.h"
|
|
# include "libft.h"
|
|
# include "enviroment.h"
|
|
# include "prompt.h"
|
|
|
|
typedef struct s_minishell
|
|
{
|
|
t_enviroment *enviroment;
|
|
char *pwd;
|
|
} t_minishell;
|
|
|
|
#endif // MINISHELL_H
|