#ifndef _LL_INCLUDE #define _LL_INCLUDE #include typedef struct llnode { char* str; bool end; struct llnode* next; } llnode; llnode* appendll(llnode* tail, char* str); #endif