Sign in
apache
/
infrastructure-ezmlm-idx
/
refs/heads/avoid-duplicate-headers
/
.
/
stralloc_cats.c
blob: 43f454ae2e25fe8e4fe46532099f027a10b1c7b0 [
file
]
/* Public domain, from daemontools-0.76. */
#include
"byte.h"
#include
"str.h"
#include
"stralloc.h"
int
stralloc_cats
(
stralloc
*
sa
,
const
char
*
s
)
{
return
stralloc_catb
(
sa
,
s
,
str_len
(
s
));
}