Debianization, and minor fixes.
[fastforward] / stralloc_copy.c
CommitLineData
8d5530c4
MW
1#include "byte.h"
2#include "stralloc.h"
3
4int stralloc_copy(sato,safrom)
5stralloc *sato;
6stralloc *safrom;
7{
8 return stralloc_copyb(sato,safrom->s,safrom->len);
9}