diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2021-05-04 07:05:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-04 07:05:24 -0400 |
| commit | fc1391a84078589f1be8b44b705fca21cf07616e (patch) | |
| tree | 94ed01bd46e3ff6b175cffbf6911b8b40963cfb8 /lib/linklist.h | |
| parent | 98d742c6f7c135729879188a6911f88acfafde4d (diff) | |
| parent | 62cd66d90ba40725f3be4710570f3fe40304c4d3 (diff) | |
Merge pull request #8617 from opensourcerouting/pim-bsm-cleanup
lib, pimd: move bsm code to typesafe lists
Diffstat (limited to 'lib/linklist.h')
| -rw-r--r-- | lib/linklist.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/linklist.h b/lib/linklist.h index d8820c924d..1452145218 100644 --- a/lib/linklist.h +++ b/lib/linklist.h @@ -295,19 +295,6 @@ extern void list_delete_all_node(struct list *list); extern void list_delete_node(struct list *list, struct listnode *node); /* - * Delete all nodes which satisfy a condition from a list. - * Deletes the node if cond function returns true for the node. - * If function ptr passed is NULL, it deletes all nodes - * - * list - * list to operate on - * cond - * function pointer which takes node data as input and return true or false - */ - -extern void list_filter_out_nodes(struct list *list, bool (*cond)(void *data)); - -/* * Insert a new element into a list with insertion sort if there is no * duplicate element present in the list. This assumes the input list is * sorted. If unsorted, it will check for duplicate until it finds out |
