From 220534453eecc2c07ad710d72268aafd20b83138 Mon Sep 17 00:00:00 2001 From: joe Date: Fri, 8 May 2015 23:07:47 -0400 Subject: initial commit --- stralloc_cat.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 stralloc_cat.c (limited to 'stralloc_cat.c') diff --git a/stralloc_cat.c b/stralloc_cat.c new file mode 100644 index 0000000..2c6ad58 --- /dev/null +++ b/stralloc_cat.c @@ -0,0 +1,9 @@ +/* Public domain. */ + +#include "byte.h" +#include "stralloc.h" + +int stralloc_cat(stralloc *sato,const stralloc *safrom) +{ + return stralloc_catb(sato,safrom->s,safrom->len); +} -- cgit v1.2.3