-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathminishell.h
More file actions
45 lines (39 loc) · 1.56 KB
/
Copy pathminishell.h
File metadata and controls
45 lines (39 loc) · 1.56 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dximenes <dximenes@student.42porto.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/20 10:42:09 by dximenes #+# #+# */
/* Updated: 2025/11/20 11:56:06 by dximenes ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
# include <readline/readline.h>
# include <stdlib.h>
# include <stdio.h>
# include <errno.h>
# include <unistd.h>
# include <limits.h>
# include <fcntl.h>
# include <dirent.h>
# include <sys/types.h>
# include <sys/wait.h>
# include <readline/history.h>
# include <signal.h>
# include "libft/include/libft.h"
# include "structs.h"
# include "parser.h"
# include "execute.h"
# include "builtin.h"
# include "error.h"
# include "auxiliary.h"
# include "binary_tree.h"
# include "signals.h"
# include "colors.h"
void initializer(t_head **head, int argc, char *argv[], char *envp[]);
int minishell(t_head *head);
void prompt_prefix(char buffer[9999]);
#endif