IUP: Simple Array

IUP - Portable User Interface

Simple Array
[Utilities]


Detailed Description

Expandable array using a simple pointer.
See iup_array.h


Functions

Iarray * iupArrayCreate (int start_count, int elem_size)
void iupArrayDestroy (Iarray *array)
void * iupArrayGetData (Iarray *array)
void * iupArrayInc (Iarray *array)
int iupArrayCount (Iarray *array)

Function Documentation

Iarray* iupArrayCreate int  start_count,
int  elem_size
 

Creates an array with an initial room for elements, and the element size. The array count starts at 0. And the maximum number of elements starts at the given count. The maximum number of elements is increased by the start count, every time it needs more memory. Must call iupArrayInc to proper allocates memory.

void iupArrayDestroy Iarray *  array  ) 
 

Destroys the array.

void* iupArrayGetData Iarray *  array  ) 
 

Returns the pointer that contains the array.

void* iupArrayInc Iarray *  array  ) 
 

Increments the number of elements in the array. The array count starts at 0. If the maximum number of elements is reached, the memory allocated is increased by the initial start count.

int iupArrayCount Iarray *  array  ) 
 

Returns the actual number of elements in the array.