libmp3splt
|
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "splt_array.h"
Go to the source code of this file.
Functions | |
int | 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, int index) |
int | 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.