MCPcopy Create free account
hub / github.com/git/git / list_del

Function list_del

list.h:80–83  ·  view source on GitHub ↗

Remove element from list. */

Source from the content-addressed store, hash-verified

78
79/* Remove element from list. */
80static inline void list_del(struct list_head *elem)
81{
82 __list_del(elem->prev, elem->next);
83}
84
85/* Remove element from list, initializing the element's list pointers. */
86static inline void list_del_init(struct list_head *elem)

Callers 10

release_object_requestFunction · 0.85
chdir_notify_unregisterFunction · 0.85
apply_arg_if_existsFunction · 0.85
process_trailers_listsFunction · 0.85
free_trailersFunction · 0.85
list_del_initFunction · 0.85
list_replace_initFunction · 0.85
threaded_second_passFunction · 0.85
new_trailers_clearFunction · 0.85

Calls 1

__list_delFunction · 0.85

Tested by

no test coverage detected