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

int
stralloc_append(stralloc *s, const char *t)
{
	return gen_alloc_append(&s->s,sizeof(*t), &s->len, &s->a, t);
}


syntax highlighted by Code2HTML, v. 0.9.1