diff options
Diffstat (limited to 'sb.h')
-rw-r--r-- | sb.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,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 |