10 lines
171 B
C
10 lines
171 B
C
/* Public domain. */
|
|
|
|
#include "byte.h"
|
|
#include "str.h"
|
|
#include "stralloc.h"
|
|
|
|
int stralloc_cats(stralloc *sa,const char *s)
|
|
{
|
|
return stralloc_catb(sa,s,str_len(s));
|
|
}
|