/*
 * 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_readyplus(stralloc *x,unsigned int n)
{
	return  gen_alloc_readyplus(
		&x->s,
		sizeof(*x->s),
		&x->len,
		&x->a,
		n);
}


syntax highlighted by Code2HTML, v. 0.9.1