correction double.c
Tests TP prog-104-p-02-2030 / test (push) Failing after 9s

This commit is contained in:
2026-04-03 17:07:41 +02:00
parent 3c46959903
commit a92c8a4ddf
@@ -32,7 +32,7 @@ int dlist_insert(struct dlist **l, size_t index, int e)
new_node->prev = NULL; new_node->prev = NULL;
new_node->next = *l; new_node->next = *l;
new_node->data = e; new_node->data = e;
new_node->next->prev = new_node; //new_node->next->prev = new_node;
//dlist_append(*l, e); //dlist_append(*l, e);
return 0; return 0;