data_structures
|
#include "array.h"
Go to the source code of this file.
Functions | |
void * | array_get (const t_array *array, size_t index) |
Returns the item at the specified position in this list. More... | |
void* array_get | ( | const t_array * | array, |
size_t | index | ||
) |
Returns the item at the specified position in this list.
NULL
if the index is out of range. index | The index (0-based counting) |
EINVAL | Index is out of range |
Definition at line 16 of file array_get.c.