Add todos after talking to prof

This commit is contained in:
Isaac Shoebottom 2023-09-18 11:39:01 -03:00
parent 0e90c9479d
commit f69a4bf22a
2 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,8 @@ Node *search(Node **head, char *data) {
return NULL;
}
// TODO: Add contains function and use it in search
Node *searchForPrevious(Node **head, Node *current) {
Node *previous = *head;
while (previous != NULL) {

View File

@ -5,6 +5,8 @@
#define MAX_LEN 100
// TODO: Make sure function signatures are correct and match the documentation
int main() {
Node *head = NULL;
// Double buffer to support up to 100 chars in find and replace command