changment dans basic.c et dans double.c
Tests TP prog-104-p-02-2030 / test (push) Failing after 8s

This commit is contained in:
2026-04-03 16:54:34 +02:00
parent 72a13f7a19
commit 40d224a8f8
2 changed files with 12 additions and 3 deletions
@@ -53,9 +53,12 @@ int list_insert(struct list **l, size_t index, int e){
if(index == 0){
*l = list_append(*l, e);
/*
new_node->data = e;
new_node->next = *l;
*l = new_node;
*/
return 0;
}