haas/fall2026/data/projects/sll1.md
... ...
@@ -16,8 +16,7 @@ By the deadline, please do the following:
16 16
* adapt your own singly-linked list implementation, in C:
17 17
* `List *insert (List *, Node *, Node *);`
18 18
* `List *append (List *, Node *, Node *);`
19
- * `List *obtain (List **, Node *);`
20
- * `Node *rmnode (List *);`
19
+ * `List *obtain (List *, Node **);`
21 20
* test your linked-list implementation
22 21
23 22
### LIST STRUCT