main shrub/shrubtools / shared / stralloc_cats.c
 1/* Public domain. */
 2
 3#include "byte.h"
 4#include "str.h"
 5#include "stralloc.h"
 6
 7int stralloc_cats(stralloc *sa,const char *s)
 8{
 9  return stralloc_catb(sa,s,str_len(s));
10}