er
Tests Basics avec Criterion / test (push) Successful in 7s

This commit is contained in:
2026-04-02 23:30:04 +02:00
parent 7d5bb35f0b
commit 130ff44e16
2 changed files with 4 additions and 6 deletions
@@ -86,9 +86,7 @@ struct list *list_get(struct list *l, size_t index){
while(tmp != NULL && ind < index){
tmp = tmp->next;
ind ++;
}
if(ind >= index) return NULL;
}
return tmp;