blob: 522f25d4d8e805c14ca9445d9dfcab1c1d5d4e76 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _SB_INCLUDE
#define _SB_INCLUDE
typedef struct node node;
node* newsb(size_t cap);
node* appendsb(node* tail, const char* str);
char* tostr(node* head);
int lensb(node* head);
#endif
|