Made it compile

This commit is contained in:
MarcUs7i 2025-03-26 18:32:53 +01:00
parent 003502d8dd
commit f1b24bf570
3 changed files with 535 additions and 8 deletions

View file

@ -92,13 +92,13 @@ void list_it_set(IntListIterator it, int value);
* @param it The list iterator to evaluate.
* @param value The value to insert.
*/
// void list_it_insert(IntListIterator it, int value);
void list_it_insert(IntListIterator it, int value);
/**
* Removes the node under the iterator and proceeds the iterator to the 'next' node.
*
* @param it The list iterator to evaluate.
*/
// void list_it_remove(IntListIterator it);
void list_it_remove(IntListIterator it);
#endif