/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* env.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/04 18:41:01 by maiboyer #+# #+# */ /* Updated: 2024/05/04 19:08:13 by maiboyer ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ENV_H #define ENV_H #include "me/buffered_str/buf_str.h" #include "me/hashmap/hashmap_env.h" #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); struct s_build_envp_state { t_vec_str out; t_buffer_str buf; }; #endif /* ENV_H */