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