Skip to content
Snippets Groups Projects

value_key_t to key_value_t

Merged costanti.volta requested to merge costanti.volta/cours:master into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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;
Loading