aboutsummaryrefslogtreecommitdiff
path: root/sb.h
blob: e3785fd822337222b07c8a1039648957b732d356 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SB_INCLUDE
#define _SB_INCLUDE

typedef struct node node;
node* newsb(size_t cap);
node* extendsb(node* tail);
node* appendsb(node* tail, const char* str);
char* tostr(node* head);
int lensb(node* head);

#endif