diff -r 000000000000 -r c045670f36e9 stralloc_copy.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stralloc_copy.c Thu Nov 01 14:46:11 2007 +0100 @@ -0,0 +1,9 @@ +#include "byte.h" +#include "stralloc.h" + +int stralloc_copy(sato,safrom) +stralloc *sato; +stralloc *safrom; +{ + return stralloc_copyb(sato,safrom->s,safrom->len); +}