-
Notifications
You must be signed in to change notification settings - Fork 1
/
minishell.h
31 lines (30 loc) · 1.3 KB
/
minishell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: msouiyeh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/23 10:15:08 by ted-dafi #+# #+# */
/* Updated: 2022/07/26 22:57:08 by msouiyeh ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
# include <unistd.h>
# include <stdlib.h>
# include <stdio.h>
# include <errno.h>
# include <limits.h>
# include <string.h>
# include <fcntl.h>
# include <sys/stat.h>
# include <termios.h>
# include "global_utils/global_utils.h"
# include <readline/readline.h>
# include <readline/history.h>
# include "ted-dafi/ted_dafi.h"
# include "mohamed/mohamed.h"
# define WRITE_END 1
# define READ_END 0
#endif