libowfat/stralloc/stralloc_cats.c

8 lines
145 B
C

#include "stralloc.h"
#include "str.h"
extern int stralloc_cats(stralloc *sa,const char *buf) {
return stralloc_catb(sa,buf,str_len(buf));
}