mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 19:36:50 +01:00
24 lines
1.0 KiB
C
24 lines
1.0 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* 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
|