-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_static_env.c
22 lines (19 loc) · 1.01 KB
/
ft_static_env.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_static_env.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: olgerret <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/04 17:31:08 by olgerret #+# #+# */
/* Updated: 2021/12/04 17:31:09 by olgerret ### ########.fr */
/* */
/* ************************************************************************** */
#include "./includes/ft_minishell.h"
char **ft_enver(char **enver)
{
static char **env = NULL;
if (enver)
env = enver;
return (env);
}