shithub: scc

ref: cb1b6c86fe82527f4c3c5f8f11ea4f5e4ae6a350
dir: /src/libscc/newitem.c/

View raw version
#include <scc/scc.h>

void
newitem(struct items *items, char *item)
{
	if ((items->n + 1) < items->n)
		die("overflow in newitem (%u + 1)", items->n);

	items->s = xrealloc(items->s, (items->n + 1) * sizeof(char **));
	items->s[items->n++] = item;
}