aboutsummaryrefslogtreecommitdiff
path: root/ll.h
blob: 9a801828e2fd6aa4396cc2fee9548f0ea154bc15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _LL_INCLUDE
#define _LL_INCLUDE
#include <stdbool.h>

typedef struct llnode {
    char* str;
    struct llnode* next;
} llnode;

llnode* appendll(llnode* tail, char* str);

#endif