」 feat(headers): organized header files

This commit is contained in:
y-syo
2024-04-29 13:55:21 +02:00
parent 73bb992b01
commit 9c0be09aa1
2 changed files with 25 additions and 10 deletions

23
include/execution.h Normal file
View File

@ -0,0 +1,23 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* execution.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/29 13:20:22 by mmoussou #+# #+# */
/* Updated: 2024/04/29 13:21:31 by mmoussou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef EXECUTION_H
# define EXECUTION_H
typedef struct s_env
{
char *name;
char *content;
struct s_env *next;
} t_env;
#endif