Cthulhu  0.2.10
Cthulhu compiler collection
vector_t Struct Reference

a generic vector of pointers More...

Collaboration diagram for vector_t:

Data Fields

arena_tarena
 
size_t size
 the total number of allocated elements More...
 
size_t used
 the number of elements in use More...
 

Detailed Description

a generic vector of pointers

a vector of non-owning pointers

all elements in the vector must fit into a pointer each. freeing the vector does not free the data it references internally. only the vector itself is freed.

Definition at line 15 of file vector.c.

Field Documentation

◆ arena

arena_t* vector_t::arena

Definition at line 17 of file vector.c.

◆ size

size_t vector_t::size

the total number of allocated elements

Definition at line 19 of file vector.c.

◆ used

size_t vector_t::used

the number of elements in use

Definition at line 20 of file vector.c.


The documentation for this struct was generated from the following file: