42sh 1.0.0
Create a shell in C
|
The file containing the my_delete_nodes function. More...
#include "mylist.h"
Functions | |
int | my_delete_nodes (node_t **begin, void const *data_ref, int(*cmp)()) |
Deletes nodes from a linked list. | |
The file containing the my_delete_nodes function.
int my_delete_nodes | ( | node_t ** | begin, |
void const * | data_ref, | ||
int(* | cmp )() ) |
Deletes nodes from a linked list.
begin | The beginning of the list |
data_ref | The data to delete |
cmp | The comparison function |