chiark / gitweb /
Merge branches 'idx/verh' and 'idx/qmqpc'
[qmail] / stralloc_cat.c
1 #include "byte.h"
2 #include "stralloc.h"
3
4 int stralloc_cat(sato,safrom)
5 stralloc *sato;
6 stralloc *safrom;
7 {
8   return stralloc_catb(sato,safrom->s,safrom->len);
9 }