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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */
/* Updated: 2020/06/18 13:45:27 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
#include <stdio.h> // for debugging - dont remove
/*
** \file minishell.h
** \brief Common header
*/
# include <stdlib.h>
# include <string.h>
# include <unistd.h>
# include <fcntl.h>
# include <dirent.h>
# include <sys/wait.h>
# include <signal.h>
# include <sys/stat.h>
# include <stdbool.h>
# include "libft.h"
# include "libft_ht.h"
# include "libft_lst.h"
# include "libft_util.h"
# include "libft_vec.h"
# include "libft_dstr.h"
/*
** \brief Value of pipe entry if closed
*/
# define PIPE_CLOSED -1
# define BUILTIN_NOT_FOUND -2
typedef t_ftht* t_path;
typedef t_ftvec* t_env;
/*
** path.c
*/
t_path path_update(t_path path, char *path_var);
/*
** env.c
*/
t_env env_from_array(char **envp);
int env_keycmp(char *var, char *key);
char *env_search(t_env env, char *key);
char *env_search_first_match(t_env env, const char *haystack);
char *env_export(t_env env, char *key, char *value);
/*
** builtin*.c - directory with all builtin commands
*/
/*
** \brief Type of a builtin main function
*/
typedef int (*t_builtin_func)(char **argv, t_env env);
/*
** \brief Entry of builtin lookup array
** \param name Executable name of builtin
** \param func Associated function
*/
struct s_builtin_entry
{
char *name;
t_builtin_func func;
};
t_builtin_func builtin_search_func(char *name);
int builtin_echo(char **argv, t_env env);
int builtin_cd(char **argv, t_env env);
int builtin_pwd(char **argv, t_env env);
int builtin_export(char **argv, t_env env);
int builtin_unset(char **argv, t_env env);
int builtin_env(char **argv, t_env env);
int builtin_exit(char **argv, t_env env);
/*
** preprocess.c
*/
char **preprocess(t_ftlst **tokens, t_env env);
char *preprocess_filename(t_ftlst **tokens, t_env env);
#endif
|