Initial commit. Able to add int to the beginning and end of the list, as well as traverse the list.

This commit is contained in:
amazing-username
2019-07-19 00:33:27 -04:00
commit 1867267b06
4 changed files with 87 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#include "types.h"
void insert_at_begin(struct node**, void*);
void insert_at_end(struct node**, void*);
void traverse(struct node**);