summaryrefslogtreecommitdiff
path: root/stralloc_cats.c
blob: 8b11e94a252db7a155ebdc590c13eca28feb3551 (plain)
1
2
3
4
5
6
7
8
#include "byte.h"
#include "str.h"
#include "stralloc.h"

int stralloc_cats(stralloc *sa,char *s)
{
  return stralloc_catb(sa,s,str_len(s));
}