aboutsummaryrefslogtreecommitdiff
path: root/ll.h
diff options
context:
space:
mode:
Diffstat (limited to 'll.h')
-rw-r--r--ll.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ll.h b/ll.h
new file mode 100644
index 0000000..be85ccb
--- /dev/null
+++ b/ll.h
@@ -0,0 +1,12 @@
+#ifndef _LL_INCLUDE
+#define _LL_INCLUDE
+
+typedef struct llnode {
+ char* str;
+ int loc;
+ struct llnode* next;
+} llnode;
+
+llnode* appendll(llnode* tail, char* str);
+
+#endif