update stuff

This commit is contained in:
Maieul BOYER 2024-08-03 00:00:42 +02:00
parent 24b210fe86
commit 709c124028
No known key found for this signature in database
20 changed files with 176 additions and 64 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/04 18:41:01 by maiboyer #+# #+# */
/* Updated: 2024/05/09 14:28:42 by rparodi ### ########.fr */
/* Updated: 2024/08/02 22:11:14 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -18,14 +18,17 @@
# include "me/types.h"
# include "me/vec/vec_str.h"
t_hashmap_env *create_env_map(void);
t_error build_envp(t_hashmap_env *envs, t_vec_str *out);
t_error build_envp(t_hashmap_env *envs, t_hashmap_env *tmp_vars, \
t_vec_str *out);
struct s_build_envp_state
{
t_vec_str out;
t_string buf;
t_hashmap_env *tmp_vars;
t_vec_str out;
t_string buf;
};
#endif /* ENV_H */