#include <util.h>
Data Fields | |
| int | length |
| int * | entries |
Struct to represent int-arrays. We allocate a single block of sizeof(int) + sizeof(int*) + length * sizeof(int), so entries is not malloced seperately. This saves one call to malloc, its associated wastage, also gives us better locality of reference.
Definition at line 156 of file util.h.