void *GB.Add ( void *parray )
Adds a new element after the end of a memory array, by expanding it.
/* Adds an element to a previously allocated integer array */ int *array; int *elt; elt = (int *)GB.Add((void *)&array); *elt = 1972;