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

Function __list_del

list.h:73–77  ·  view source on GitHub ↗

Remove element from list. */

Source from the content-addressed store, hash-verified

71
72/* Remove element from list. */
73static inline void __list_del(struct list_head *prev, struct list_head *next)
74{
75 next->prev = prev;
76 prev->next = next;
77}
78
79/* Remove element from list. */
80static inline void list_del(struct list_head *elem)

Callers 2

list_delFunction · 0.85
list_moveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected