Merge branch 'camille' of git.chauvet.pro:starnakin/minishell into camille

This commit is contained in:
Camille Chauvet 2023-02-14 13:39:22 +01:00
commit 8283472d2e

6
env.c
View File

@ -6,7 +6,7 @@
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/02 14:39:56 by erey-bet #+# #+# */
/* Updated: 2023/02/03 16:04:16 by erey-bet ### ########.fr */
/* Updated: 2023/02/14 07:32:43 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
@ -125,7 +125,7 @@ void add_sort(t_list **head, char *str)
}
}
char *get_value_index(int index, t_list **head)
char *get_value_by_index(int index, t_list **head)
{
t_list *current;
int i;
@ -155,7 +155,7 @@ int is_start(char *big, char *little)
return (0);
}
char *get_value_key(char *key, t_list **head)
char *get_value_by_key(char *key, t_list **head)
{
t_list *current;