data_structures
|
#include "array.h"
Go to the source code of this file.
Functions | |
ssize_t | array_indexof (const t_array *array, const void *val) |
Returns the index at which the specified value is found in the array, or -1 if the value isn't the array. More... | |
ssize_t array_indexof | ( | const t_array * | array, |
const void * | val | ||
) |
Returns the index at which the specified value is found in the array, or -1
if the value isn't the array.
val | The value |
-1
if the value isn't the array. cmp
function). Definition at line 16 of file array_indexof.c.