42_minishell/env.h

22 lines
987 B
C
Raw Normal View History

2023-02-01 11:08:02 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* env.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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