aboutsummaryrefslogtreecommitdiff
path: root/ll.h
blob: cea60106c1a87251426f8bb96a57b5967ceb5b24 (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, /*@notnull@*/char* str);

#endif