Functions | |
| VimosTableArray * | newTableArray (int size) |
| Create an empty table array of appropriate size. | |
| void | deleteTableArray (VimosTableArray *array) |
| Delete an table array object. | |
| void | destroyTableArray (VimosTableArray *array) |
| Destroy an table array object. | |
| int | tblArrayIsEmpty (const VimosTableArray *array) |
| Check if an table array object is empty. | |
| int | tblArrayCapacity (const VimosTableArray *array) |
| Get the capacity of an table array. | |
| int | tblArraySize (const VimosTableArray *array) |
| Get the number of tables stored in an table array. | |
| const VimosTable * | tblArrayGet (const VimosTableArray *array, int index) |
| The function retrieves an table from an table array object. | |
| int | tblArraySet (VimosTableArray *array, int index, const VimosTable *table) |
| Set an element of an table array. | |
| VimosTable * | tblArrayRemove (VimosTableArray *array, int index) |
| Remove an table from an table array object. | |
| VimosTable ** | tblArrayGetData (const VimosTableArray *array) |
| Get reference to the array objects data. | |
|
|
Delete an table array object.
|
|
|
Destroy an table array object.
|
|
|
Create an empty table array of appropriate size.
NULL.
|
|
|
Get the capacity of an table array.
|
|
||||||||||||
|
The function retrieves an table from an table array object.
|
|
|
Get reference to the array objects data.
|
|
|
Check if an table array object is empty.
|
|
||||||||||||
|
Remove an table from an table array object.
NULL. If no table was stored in the array element the function succeeds and the returned reference is NULL.
|
|
||||||||||||||||
|
Set an element of an table array.
|
|
|
Get the number of tables stored in an table array.
|
1.4.1