diff -r 000000000000 -r 068428edee47 stralloc_cats.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stralloc_cats.c Fri Oct 19 14:06:22 2007 +0200 @@ -0,0 +1,10 @@ +#include "byte.h" +#include "str.h" +#include "stralloc.h" + +int stralloc_cats(sa,s) +stralloc *sa; +char *s; +{ + return stralloc_catb(sa,s,str_len(s)); +}