aboutsummaryrefslogtreecommitdiff
path: root/ll.h
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-24 01:29:12 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-24 01:29:12 -0400
commitb9ecb91843036216323d66896e01be7a79e6f362 (patch)
tree024b9742b9a6f55160767aa7afbcd449bb05dae3 /ll.h
parent66ad66d6f312b23f2232d72d1e30c9250a25d65a (diff)
removed ll->end
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..9a80182
--- /dev/null
+++ b/ll.h
@@ -0,0 +1,12 @@
+#ifndef _LL_INCLUDE
+#define _LL_INCLUDE
+#include <stdbool.h>
+
+typedef struct llnode {
+ char* str;
+ struct llnode* next;
+} llnode;
+
+llnode* appendll(llnode* tail, char* str);
+
+#endif