shithub: scc

ref: 57cc52be5b9df84c0ffa06b21307577cbc10e32f
dir: /lib/newitem.c/

View raw version
#include "../inc/cc.h"

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

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