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

10 lines
171 B
C

/* Public domain. */
#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));
}