blob: 26467158bd10643848c2546231f6ce50e819be47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _LL_INCLUDE
#define _LL_INCLUDE
#include <stdbool.h>
typedef struct llnode {
char* str;
bool end;
struct llnode* next;
} llnode;
llnode* appendll(llnode* tail, char* str);
#endif
|