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

Function list_del

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

Source from the content-addressed store, hash-verified

37}
38
39static inline void list_del(struct list_head *entry) {
40 __list_del(entry->prev, entry->next);
41 entry->next = NULL;
42 entry->prev = NULL;
43}
44
45#define list_entry(ptr, type, member) container_of(ptr, type, member)
46

Callers 1

RemoveHookEntryMethod · 0.85

Calls 1

__list_delFunction · 0.85

Tested by

no test coverage detected