aboutsummaryrefslogtreecommitdiff
path: root/ll.h
diff options
context:
space:
mode:
Diffstat (limited to 'll.h')
-rw-r--r--ll.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ll.h b/ll.h
index be85ccb..2646715 100644
--- a/ll.h
+++ b/ll.h
@@ -1,9 +1,10 @@
#ifndef _LL_INCLUDE
#define _LL_INCLUDE
+#include <stdbool.h>
typedef struct llnode {
char* str;
- int loc;
+ bool end;
struct llnode* next;
} llnode;