int ra_list_insert (void ** *head, void * prev, void * item);
int ra_list_insert
*head
prev
previous item
item
item to be added
This function inserts 'item' in a linked list (identified by 'head'). The item will come directly after 'prev'.
linked_list.c