22 lines
987 B
C
22 lines
987 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 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
|