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

11 lines
171 B
C
Raw Normal View History

2024-03-25 00:51:57 +01:00
/* 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));
}