From 1423d42583ef9507e1ace3bf9ea86dfc305a71a8 Mon Sep 17 00:00:00 2001 From: Camille Chauvet Date: Tue, 14 Feb 2023 07:33:02 +0100 Subject: [PATCH] rename function --- env.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/env.c b/env.c index a043a88..851a496 100644 --- a/env.c +++ b/env.c @@ -6,7 +6,7 @@ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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;