1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include "minishell.h" void st_print_env_variable(t_ftht_content *content) { ft_putstr(content->key); ft_putchar('='); ft_putstr((char*)content->value); ft_putchar('\n'); } int ms_env(t_env env) { ft_htiter(env, st_print_env_variable); return (0); }