blob: 52b5baa99ced5e7cb2ffb3cde9b7840be56f3ae2 (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/28 11:45:44 by cacharle #+# #+# */
/* Updated: 2020/02/28 11:50:29 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
/**
** \file main.c
** \brief Minishell entrypoint
*/
#include "minishell.h"
/**
** \brief Program entrypoint
** \param argc Number of arguments in `argv`
** \param argv Array of string, argument of the program
** \param envp NULL terminated array of string representing the environment
** \return 0 if ok, 1 otherwise
*/
int main(int argc, char **argv, const char **envp)
{
t_path path;
t_env env;
/* char *line; */
/* int ret; */
(void)argc;
(void)argv;
env = ms_env_from_array((char**)envp);
path = ms_path_update(NULL, ft_htget(env, MS_PATH_KEY));
printf("%s\n", (char*)ft_htget(path, "nmap"));
/* ms_env(env); */
/* ms_pwd(&state); */
/* ms_cd(&state, NULL); */
/* ms_pwd(&state); */
/* while ((ret = ft_next_line(STDIN_FILENO, &line)) == 1) */
/* { */
/* if (ms_eval(ms_parse(line)) == -1) */
/* continue ; // and display error */
/* free(line); */
/* } */
/* free(line); */
ft_htdestroy(path, ms_ht_del_str_entry);
ft_htdestroy(env, ms_ht_del_str_entry);
return (0);
}
|