1 /* collectn.h Header file for 'collection' abstract data type
3 * This file is public domain, and does not come under the NASM license.
4 * It, along with 'collectn.c' implements what is basically a variable
5 * length array (of pointers)
11 typedef struct tagCollection
{
12 void *p
[32]; /* array of pointers to objects */
14 struct tagCollection
*next
;
17 void collection_init(Collection
* c
);
18 void ** colln(Collection
* c
, int index
);
19 void collection_reset(Collection
* c
);