8 lines
147 B
C
8 lines
147 B
C
#include "stralloc.h"
|
|
#include "str.h"
|
|
|
|
extern int stralloc_copys(stralloc *sa,const char *buf) {
|
|
return stralloc_copyb(sa,buf,str_len(buf));
|
|
}
|
|
|