Les mendarines Lecler, en vrai ça va, Camille est aigris mais propre, en tout cas hâte Nathan se lève

This commit is contained in:
2023-04-04 22:03:30 +02:00
parent 0d231a062d
commit b1805834ec
4 changed files with 2 additions and 5 deletions

1
env/env.h vendored
View File

@ -20,7 +20,6 @@ typedef struct s_env
{
char *key;
char *value;
bool original;
} t_env;
char *ft_env_filler(t_data *data, const char *str);

2
env/env1.c vendored
View File

@ -82,7 +82,6 @@ int create_value_by_key(char *key, char *value, t_list **head)
return (1);
content->key = key;
content->value = value;
content->original = 0;
add_sort(head, content);
return (0);
}
@ -107,7 +106,6 @@ t_list **init_env(char **env)
return (NULL);
var->key = get_key(env[i]);
var->value = get_value(env[i]);
var->original = 1;
add_sort(head, var);
}
return (head);