diff -r 000000000000 -r 068428edee47 stralloc_cat.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stralloc_cat.c Fri Oct 19 14:06:22 2007 +0200 @@ -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); +}