VECTOR_CREATE

Syntax

vector_handle = VECTOR_CREATE ( );

or with optional initial allocation size:

vector_handle = VECTOR_CREATE ( initial_allocation_size );
Input arguments:
(optional) int Initial allocation size.

Return Values

Success:
handle vector_handle Handle of a new vector.
Failure:
int 0

Description

This function creates a new vector. The vector must be freed with VECTOR_DELETE.