2023-02-14 11:11:39 -05:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* env.c :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2023/02/14 14:56:02 by cchauvet #+# #+# */
|
2023-03-30 09:16:21 -04:00
|
|
|
/* Updated: 2023/03/30 15:15:04 by erey-bet ### ########.fr */
|
2023-02-14 11:11:39 -05:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2023-03-10 06:32:39 -05:00
|
|
|
#include "./builtins_private.h"
|
2023-02-14 11:11:39 -05:00
|
|
|
|
2023-02-23 11:19:25 -05:00
|
|
|
int print_env(t_list **env, int fd)
|
2023-02-14 11:11:39 -05:00
|
|
|
{
|
|
|
|
t_list *current;
|
|
|
|
|
2023-02-23 11:19:25 -05:00
|
|
|
current = *env;
|
2023-02-17 11:46:12 -05:00
|
|
|
while (current->next != NULL)
|
2023-02-14 11:11:39 -05:00
|
|
|
{
|
2023-04-04 16:03:30 -04:00
|
|
|
if (((t_env *)(current->content))->value)
|
2023-03-09 09:07:36 -05:00
|
|
|
{
|
|
|
|
ft_putstr_fd(((t_env *)(current->content))->key, fd);
|
|
|
|
ft_putstr_fd("=", fd);
|
|
|
|
ft_putstr_fd(((t_env *)(current->content))->value, fd);
|
|
|
|
write(fd, "\n", 1);
|
|
|
|
}
|
2023-02-14 11:11:39 -05:00
|
|
|
current = current->next;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|