rustit/mirror_runit/runit-2.1.2/src/stralloc_cat.c
2024-03-24 23:51:57 +00:00

9 lines
175 B
C

/* Public domain. */
#include "byte.h"
#include "stralloc.h"
int stralloc_cat(stralloc *sato,const stralloc *safrom)
{
return stralloc_catb(sato,safrom->s,safrom->len);
}