aboutsummaryrefslogtreecommitdiff
path: root/stralloc_copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'stralloc_copy.c')
-rw-r--r--stralloc_copy.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/stralloc_copy.c b/stralloc_copy.c
new file mode 100644
index 0000000..6b9ae42
--- /dev/null
+++ b/stralloc_copy.c
@@ -0,0 +1,7 @@
+#include "byte.h"
+#include "stralloc.h"
+
+int stralloc_copy(stralloc *sato,const stralloc *safrom)
+{
+ return stralloc_copyb(sato,safrom->s,safrom->len);
+}