9 lines
175 B
C
9 lines
175 B
C
/* Public domain. */
|
|
|
|
#include "byte.h"
|
|
#include "stralloc.h"
|
|
|
|
int stralloc_cat(stralloc *sato,const stralloc *safrom)
|
|
{
|
|
return stralloc_catb(sato,safrom->s,safrom->len);
|
|
}
|