bebou t tro for

This commit is contained in:
Raphaël 2024-05-09 17:16:07 +02:00
parent b5c7344851
commit 1252ac48a8
15 changed files with 214 additions and 25 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/02 15:49:56 by maiboyer #+# #+# */
/* Updated: 2024/05/04 18:40:53 by maiboyer ### ########.fr */
/* Updated: 2024/05/09 16:23:54 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,6 +16,7 @@
#include "app/node.h"
#include "me/hashmap/hashmap_env.h"
#include "me/types.h"
#include "me/os/process.h"
typedef struct s_parser
{
@ -24,13 +25,14 @@ typedef struct s_parser
typedef struct s_utils
{
t_str name_shell;
t_str str_input;
t_str *strs_input;
t_str *path;
t_parser parser;
t_hashmap_env *env;
t_node current_node;
t_str name_shell;
t_str str_input;
t_str *strs_input;
t_str *path;
t_parser parser;
t_hashmap_env *env;
t_node current_node;
t_process ret;
} t_utils;
#endif /* STATE_H */