release
[hcoop/zz_old/debian/djbdns.git] / stralloc_cat.c
1 #include "byte.h"
2 #include "stralloc.h"
3
4 int stralloc_cat(stralloc *sato,const stralloc *safrom)
5 {
6 return stralloc_catb(sato,safrom->s,safrom->len);
7 }