Sign in
apache
/
infrastructure-ezmlm-idx
/
refs/heads/avoid-duplicate-headers
/
.
/
stralloc_cat.c
blob: 4bb3891ab1cb67e075541d4ecf0819679c3ef69b [
file
]
/* Public domain, from daemontools-0.76. */
#include
"byte.h"
#include
"stralloc.h"
int
stralloc_cat
(
stralloc
*
sato
,
const
stralloc
*
safrom
)
{
return
stralloc_catb
(
sato
,
safrom
->
s
,
safrom
->
len
);
}