aboutsummaryrefslogtreecommitdiff
path: root/stralloc_cats.c
blob: 92cb66e517e92cd5df6eace1ec42a6b39ac6d21e (plain)
1
2
3
4
5
6
7
8
#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));
}