diff options
Diffstat (limited to 'll.h')
-rw-r--r-- | ll.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |