ECE2035 Project 2

Dependencies:   mbed mbed-rtos SDFileSystem

Revision:
4:8e15742ebcc6
Parent:
0:bff8b9020128
--- a/doubly_linked_list.h	Sun Apr 04 18:02:25 2021 +0000
+++ b/doubly_linked_list.h	Wed Apr 07 13:26:44 2021 +0000
@@ -11,6 +11,7 @@
 #ifndef DOUBLELINKEDLIST_H
 #define DOUBLELINKEDLIST_H
 
+
 // A linked list node structure.
 typedef struct llnode_t {
     void* data;
@@ -29,6 +30,8 @@
 struct LLItem {};
 void testDLL(void);
 
+void printLinkedList(DLinkedList* dLinkedList);
+
 /**
  * create_llnode
  *
@@ -140,5 +143,7 @@
  * @return  the size
  */
 int getSize(DLinkedList* dLinkedList);
+
+
 #endif