aboutsummaryrefslogtreecommitdiff
path: root/sb.h
diff options
context:
space:
mode:
Diffstat (limited to 'sb.h')
-rw-r--r--sb.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/sb.h b/sb.h
deleted file mode 100644
index 522f25d..0000000
--- a/sb.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#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