10 lines
175 B
C
10 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);
|
||
|
}
|