11 lines
171 B
C
11 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));
|
||
|
}
|