27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* main.c :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/04 16:19:22 by whaffman #+# #+# */
|
|
/* Updated: 2025/02/04 16:39:58 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int main(int argc, char **argv, char **envp)
|
|
{
|
|
t_enviroment *enviroment;
|
|
char *line;
|
|
|
|
(void)argc;
|
|
(void)argv;
|
|
parse_enviroment(envp, &enviroment);
|
|
//print_enviroment(enviroment);
|
|
free_enviroment(enviroment);
|
|
return (EXIT_SUCCESS);
|
|
}
|