24 lines
1.0 KiB
C
24 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* minishell.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/04 16:13:13 by whaffman #+# #+# */
|
|
/* Updated: 2025/02/04 16:28:30 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"
|
|
|
|
#endif // MINISHELL_H
|