/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* env.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/01/31 14:39:05 by erey-bet #+# #+# */ /* Updated: 2023/01/31 14:56:16 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ENV_H # define ENV_H typedef struct s_env { void *ctn; void *next; } t_env; #endif