MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / __list_del

Function __list_del

Bcore/src/main/cpp/Dobby/source/include/list_structure.h:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34static inline void __list_del(struct list_head *prev, struct list_head *next) {
35 next->prev = prev;
36 prev->next = next;
37}
38
39static inline void list_del(struct list_head *entry) {
40 __list_del(entry->prev, entry->next);

Callers 1

list_delFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected