8 lines
154 B
C
8 lines
154 B
C
#include "stralloc.h"
|
|
#include "str.h"
|
|
|
|
extern int stralloc_cats(stralloc *sa,const unsigned char *buf) {
|
|
return stralloc_catb(sa,buf,str_len(buf));
|
|
}
|
|
|