normed the stdme headers

This commit is contained in:
Maieul BOYER 2024-07-11 19:01:59 +02:00
parent 79e039c94a
commit 398dd520d0
No known key found for this signature in database
84 changed files with 297 additions and 2819 deletions

View file

@ -11,21 +11,21 @@
/* ************************************************************************** */
#ifndef ENV_H
#define ENV_H
# define ENV_H
#include "me/string/string.h"
#include "me/hashmap/hashmap_env.h"
#include "me/types.h"
#include "me/vec/vec_str.h"
# include "me/hashmap/hashmap_env.h"
# include "me/string/string.h"
# include "me/types.h"
# include "me/vec/vec_str.h"
t_hashmap_env *create_env_map(void);
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_vec_str *out);
struct s_build_envp_state
struct s_build_envp_state
{
t_vec_str out;
t_string buf;
t_string buf;
};
#endif /* ENV_H */