libowfat/stralloc/stralloc_cat.c

8 lines
147 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include "stralloc.h"
#include "str.h"
2015-02-04 02:57:56 +00:00
extern int stralloc_cat(stralloc *sa,const stralloc *sa2) {
2001-02-02 17:54:47 +00:00
return stralloc_catb(sa,sa2->s,sa2->len);
}