From 9684260c276575e539665790bb98e3aaa28c96e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20LAVERGNE?= Date: Tue, 31 Oct 2023 11:26:11 +0100 Subject: [PATCH] Renommage de la fonction de recherche --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index dbac0c2..95b9462 100644 --- a/src/search.c +++ b/src/search.c @@ -16,7 +16,7 @@ * @param found: pointeur sur un entier qui indique si la valeur a été trouvée ou non * @return index de la valeur recherchée dans le tableau cible ou celle d'insertion si non trouvée */ -int searchClient(int targetTab[], int valSearched, int tLog, int *found) +int searchTab(int targetTab[], int valSearched, int tLog, int *found) { for(int i=0; i < tLog; i++) {