All functions needed to handle the array of split points. More...
#include <stdio.h>#include <stdlib.h>#include <assert.h>#include "splt_array.h"
Go to the source code of this file.
Functions | |
| long | splt_array_append (splt_array *array, void *element) |
| void | splt_array_clear (splt_array *array) |
| void | splt_array_free (splt_array **array) |
| void * | splt_array_get (splt_array *array, long index) |
| void ** | splt_array_get_elements (splt_array *array) |
| long | splt_array_get_number_of_elements (splt_array *array) |
| long | splt_array_length (splt_array *array) |
| splt_array * | splt_array_new () |
All functions needed to handle the array of split points.
Growing and shrinking this array is done with realloc().
Definition in file splt_array.c.
1.6.1