libowfat/stralloc/stralloc_cats.c

8 lines
145 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include "stralloc.h"
#include "str.h"
extern int stralloc_cats(stralloc *sa,const char *buf) {
2001-02-02 17:54:47 +00:00
return stralloc_catb(sa,buf,str_len(buf));
}