42_minishell/env.h
Etienne Rey-bethbeder 1533fb8c65 0.1
2023-02-01 17:08:02 +01:00

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