rustit/mirror_runit/runit-2.1.2/src/stralloc_cat.c

10 lines
175 B
C
Raw Normal View History

2024-03-25 00:51:57 +01:00
/* Public domain. */
#include "byte.h"
#include "stralloc.h"
int stralloc_cat(stralloc *sato,const stralloc *safrom)
{
return stralloc_catb(sato,safrom->s,safrom->len);
}