data_structures
|
Go to the source code of this file.
Functions | |
void | array_insert (t_array *array, size_t index, const void *content) |
Inserts a copy of the specified item at the specified index. More... | |
void array_insert | ( | t_array * | array, |
size_t | index, | ||
const void * | content | ||
) |
Inserts a copy of the specified item at the specified index.
index | The index at which to insert |
content | The item to be copied |
Definition at line 17 of file array_insert.c.