blob: cc0798f8bc2c3c81b2b259fccfa8bb809ae184d3 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include "minishell.h"
#include "ft_d_enum.h"
#include "ft_s_struct.h"
#include "ft_s_init.h"
#include "ft_s_destroy.h"
int
main(int argc,
const char *argv[],
char *envp[])
{
t_msh *msh;
(void)argc;
(void)argv;
if (!(msh = ft_init_msh()))
{
return (FT_RET_ALLOC);
}
msh->envp = envp;
while (*msh->envp)
{
ft_printf("%s\n", *msh->envp);
msh->envp++;
}
ft_s_destroy(msh);
return (FT_RET_FINE);
}
/*
** ====== INFO ======
** Files prefixes info
** -------------------
** ft_ -> 42
** b_ -> builtins related
** d_ -> defines related
** e_ -> exec related
** p_ -> parse related
** s_ -> structs related
*/
|