1#include "byte.h"
2#include "stralloc.h"
3
4int
5stralloc_copy(stralloc *sato, const stralloc *safrom)
6{
7 return stralloc_copyb(sato,safrom->s,safrom->len);
8}
1#include "byte.h"
2#include "stralloc.h"
3
4int
5stralloc_copy(stralloc *sato, const stralloc *safrom)
6{
7 return stralloc_copyb(sato,safrom->s,safrom->len);
8}