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

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