/*
 * reimplementation of Daniel Bernstein's unix library.
 * placed in the public domain by Uwe Ohse, uwe@ohse.de.
 */
#include "stralloc.h"

int
stralloc_copy (stralloc * to, const stralloc * from)
{
	return stralloc_copyb (to, from->s, from->len);
}


syntax highlighted by Code2HTML, v. 0.9.1