1 2 3 4 5 6 7 8 9 10 11 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