summaryrefslogtreecommitdiff
path: root/stralloc_copy.c
blob: 652aed6ba83ab2e6cd4c058e5e75357e347bbf58 (plain)
1
2
3
4
5
6
7
8
9
#include "byte.h"
#include "stralloc.h"

int stralloc_copy(sato,safrom)
stralloc *sato;
stralloc *safrom;
{
  return stralloc_copyb(sato,safrom->s,safrom->len);
}