Sign in
apache
/
infrastructure-ezmlm-idx
/
refs/heads/avoid-duplicate-headers
/
.
/
stralloc_copy.c
blob: 26aa78c1bac430306557bab7a43eec26756b6008 [
file
]
/* Public domain, from djbdns-1.05. */
/* As per http://cr.yp.to/djbdns/res-disaster.html */
#include
"byte.h"
#include
"stralloc.h"
int
stralloc_copy
(
stralloc
*
sato
,
const
stralloc
*
safrom
)
{
return
stralloc_copyb
(
sato
,
safrom
->
s
,
safrom
->
len
);
}