diff options
Diffstat (limited to 'stralloc_cat.c')
-rw-r--r-- | stralloc_cat.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/stralloc_cat.c b/stralloc_cat.c new file mode 100644 index 0000000..efbb112 --- /dev/null +++ b/stralloc_cat.c @@ -0,0 +1,9 @@ +#include "byte.h" +#include "stralloc.h" + +int stralloc_cat(sato,safrom) +stralloc *sato; +stralloc *safrom; +{ + return stralloc_catb(sato,safrom->s,safrom->len); +} |