Skip to content
Snippets Groups Projects
Commit ddba9ebb authored by costanti.volta's avatar costanti.volta :tophat:
Browse files

value_key_t to key_value_t

parent e174cc7e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment