From ddba9ebb230668072ed4e50d5fd68b95b5a3fd5c Mon Sep 17 00:00:00 2001
From: "costanti.volta" <costantino.volta@etu.hesge.ch>
Date: Tue, 20 Feb 2024 10:06:13 +0100
Subject: [PATCH] value_key_t to key_value_t

---
 slides/cours_14.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/slides/cours_14.md b/slides/cours_14.md
index 1ff7b23..b77b9c3 100644
--- a/slides/cours_14.md
+++ b/slides/cours_14.md
@@ -137,7 +137,7 @@ Poster le résultat sur matrix.
 . . .
 
 ```C
-bool binary_get1(int n, value_key_t table[n], key_t key, value_t *value) {
+bool binary_get1(int n, key_value_t table[n], key_t key, value_t *value) {
     int top = n - 1, bottom = 0;
     while (top > bottom) { 
         int middle = (top + bottom) / 2;
-- 
GitLab